Stretched Monitor? Fix It in 2 Minutes

Hardware – RAM & MB Beginner 👁 12 views 📅 Jun 19, 2026

External monitor looks stretched or wrong resolution? Usually a GPU driver or display scaling setting. Try this fix first.

Quick answer for advanced users

Press Win+P, select “Extend” or “Duplicate”, then right-click desktop > Display settings and set resolution to monitor’s native (e.g., 1920x1080). If still stretched, update GPU driver or check scaling in GPU control panel.

Why your monitor looks stretched

This happens when your computer sends a resolution that doesn’t match the monitor’s native aspect ratio. You’ll see it a lot when you plug a laptop into a monitor that’s different from your laptop screen. The culprit here is almost always the GPU driver or a wrong scaling setting. It’s not the cable – HDMI or DisplayPort cables don’t stretch the image unless they’re damaged, but that’s rare.

I’ve seen this on Windows 10, Windows 11, and macOS Ventura. On Linux, it’s usually a missing driver for the monitor. Let’s walk through the fixes.

Step-by-step fix for Windows

  1. Check the display mode. Press Win+P. You’ll see four options: PC screen only, Duplicate, Extend, Second screen only. Select “Extend” or “Second screen only” – Duplicate often forces both screens to the same resolution, causing stretch.
  2. Set correct resolution. Right-click on desktop > Display settings. Scroll to “Scale and layout”. Under “Display resolution”, pick your monitor’s native resolution. Usually that’s 1920x1080 for Full HD monitors, or 2560x1440 for QHD. If you don’t see the right one, your GPU driver is wrong.
  3. Update GPU driver. Open Device Manager (right-click Start > Device Manager). Expand “Display adapters”. Right-click your GPU (NVIDIA, AMD, or Intel) and select “Update driver” > “Search automatically for drivers”. If Windows doesn’t find it, go to the GPU manufacturer’s site and download the latest.
  4. Check GPU control panel. For NVIDIA: right-click desktop > NVIDIA Control Panel > Display > Change resolution. Make sure “Scaling” is set to “No scaling” or “Aspect ratio”. For AMD: same idea in Radeon Settings. For Intel: Intel Graphics Command Center > Display > Scaling > select “Maintain aspect ratio”.
  5. Reboot. Seriously. It sounds stupid but I’ve seen this fix stuck scaling issues after a driver update.

For macOS users

Macs usually handle this better, but it can happen. Go to System Settings > Displays. Hold the Option key and click “Scaled” to see more resolutions. Pick the one that matches your monitor’s native size. If it’s still stretched, check if your Mac is in “Mirror mode” – turn that off in Display settings. Also, some older MacBooks with Intel graphics have trouble with 4K monitors over HDMI – try a USB-C to DisplayPort cable instead.

For Linux users

Open a terminal and run xrandr. You’ll see a list of connected monitors (e.g., HDMI-1, eDP-1). The star marks the current one. To set the right mode, run:
xrandr --output HDMI-1 --mode 1920x1080
Replace “HDMI-1” with your monitor’s name and “1920x1080” with its native resolution. If that mode isn’t listed, you need to add it with cvt and xrandr --newmode. That’s a bit more advanced – Google “add custom resolution Linux xrandr” for steps.

Alternative fixes if the main one fails

  • Check the monitor’s built-in settings. Most monitors have a button that opens an on-screen menu. Look for “Image scaling” or “Aspect ratio” and set it to “Full” or “1:1”. Some cheap monitors default to “Stretch”.
  • Try a different cable. I know I said it’s rare, but I once spent an hour debugging a stretched image only to swap a bad HDMI 1.4 cable for a 2.0 one. If you’re running 1440p or 4K, make sure the cable supports that bandwidth.
  • Uninstall the monitor driver. In Device Manager, expand “Monitors”, right-click your external monitor, select “Uninstall device”, reboot. Windows will reinstall a generic driver. This fixes weird EDID issues that confuse the GPU.
  • Reset GPU driver. Press Win+Ctrl+Shift+B. This restarts the GPU driver without rebooting. Hit it twice. Works for sudden stretching after a game or video.

How to stop it from happening again

Prevention is boring but simple. Keep your GPU driver updated – once a month check for updates. If you use a laptop with a dock, make sure the dock is USB-C that supports video (some cheap docks don’t). Also, when you’re about to plug in a monitor, close the laptop lid first, then open it – I’ve seen this trick force Windows to re-detect the external display correctly. And don’t mix refresh rates between screens if you can avoid it. That’s where stretching often shows up.

If nothing works, test the monitor on another computer. If it’s still stretched, the monitor itself is broken. Time for an RMA.

Was this solution helpful?