Second Monitor Blurry Windows 11 Fix [Scaling Issue] [2026]
Quick Answer: Your second monitor is blurry because Windows 11 applies different DPI scaling per display. Set both monitors to the same scaling percentage (100%, 125%, or 150%) and enable "Let Windows try to fix apps so they're not blurry" in Advanced scaling settings.
Symptoms
- Text appears fuzzy or out of focus on external monitor
- Images look soft compared to laptop screen
- Fonts have color fringing (red/blue edges on letters)
- Apps look sharp on one monitor but blurry on the other
- Mouse cursor appears larger/smaller when moving between displays
- Blurriness only affects some applications (Chrome, Office, etc.)
Why This Happens (Root Cause)
Windows 11 DPI scaling creates three potential blur sources:
-
Per-Monitor DPI Awareness: Modern apps declare themselves "DPI aware" and render at native resolution. Legacy apps (many enterprise tools, older games) let Windows scale them bitmap-style, causing blur.
-
Fractional Scaling Artifacts: Windows 11 supports 125%, 150%, 175% scaling. These are not native monitor resolutions — Windows renders at 200% then downscales, losing sharpness.
-
Sub-Pixel Rendering Mismatch: ClearType uses RGB sub-pixel order for font smoothing. If your external monitor has different sub-pixel layout (BGR vs RGB) than your laptop, fonts look fuzzy.
-
HDMI vs DisplayPort EDID: HDMI often reports wrong physical dimensions, causing Windows to calculate incorrect DPI. DisplayPort is more accurate.
How to Diagnose (Manual)
Check 1: Verify Current DPI Scaling
Get-ItemProperty -Path "HKCU:\Control Panel\Desktop" -Name "LogPixels"
Values: 96 = 100%, 120 = 125%, 144 = 150%, 192 = 200%
Check 2: Check Per-Monitor DPI Settings
Get-WmiObject -Namespace root\wmi -Class WmiMonitorBasicDisplayParams | Select-Object InstanceName, SupportedDisplayModes, VideoInputType
What you're looking for: Different VideoInputType values indicate different connection types affecting scaling detection.
Check 3: Inspect Application DPI Awareness
Get-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\SideBySide" -Name "PreferExternalManifest" -ErrorAction SilentlyContinue
Value 1 = Windows uses external manifest files for DPI scaling (can cause blur if manifests are wrong).
Step-by-Step Fix
Method 1: Match Scaling Percentages (Recommended)
- Right-click Desktop → Display settings
- Select your external monitor (click the number)
- Under Scale, choose the same percentage as your main display
- If laptop is 125%, set external to 125%
- Avoid mixing 100% and 150%
- Click Keep changes
Method 2: Enable Fix for Blurry Apps
- Display settings → Advanced scaling settings (blue link)
- Turn on "Let Windows try to fix apps so they're not blurry"
- Restart affected applications
This uses AI upscaling to re-render legacy apps at native DPI instead of bitmap scaling.
Method 3: Override High DPI Scaling Per App
For apps that remain blurry:
- Right-click the app shortcut → Properties
- Go to Compatibility tab
- Click Change high DPI settings
- Check "Override high DPI scaling behavior"
- Set to "Application" (if app supports it) or "System (Enhanced)"
- Click OK → OK
Method 4: ClearType Text Tuner for Both Monitors
- Press Windows + R, type
cttune, press Enter - Click Next through the wizard
- On each page, select the text sample that looks best on your blurry monitor
- Complete the wizard
- Repeat the entire wizard — it runs per-monitor, so you need to do it once per display
Method 5: Registry Fix for Per-Monitor ClearType
Create a .reg file:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Control Panel\Desktop]
"Win8DpiScaling"=dword:00000001
"DpiScalingVer"=dword:00001018
[HKEY_CURRENT_USER\Control Panel\Desktop\PerMonitorSettings]
"Enabled"=dword:00000001
What this does: Forces Windows 8-style per-monitor DPI that some users find sharper than Windows 11's method.
How Againly Diagnoses This Automatically
Againly runs check_display_topology in 0.6 seconds and detects:
- Mismatched DPI scaling between displays (100% vs 150%)
- Applications with legacy DPI awareness flags
- ClearType settings not applied to all monitors
- HDMI EDID reporting incorrect physical dimensions
Instead of guessing, it shows: "Detected 125% on primary and 100% on secondary — recommending 125% match for sharp text."
[CTA: Try free diagnosis]
Prevention
- Buy monitors with matching pixel density — 1080p 24" and 4K 27" both have ~92 PPI, scaling together well
- Use DisplayPort over HDMI — more accurate EDID for DPI calculation
- Set one scale and stick with it — changing frequently causes Windows to recache fonts poorly
- Restart apps after display changes — they cache DPI on launch
FAQ
Q: Why is only Chrome blurry, but File Explorer is sharp? A: Chrome has its own DPI scaling. Go to Chrome settings → Appearance → Page zoom, set to match your Windows scaling.
Q: Will 100% scaling on a 4K monitor fix the blur? A: Yes but text will be tiny. Better to use 150% or 200% (integer multiples) for crisp scaling.
Q: Why does my monitor look blurry at 1440p? A: 1440p (2560×1440) at 27" is ~109 PPI — an awkward density that doesn't scale cleanly to common laptop densities.
Q: Is this a Windows 11 bug? A: It's a design trade-off. Windows 10 had similar issues. macOS handles this better by using 2× scaling only.
Related: External Monitor Not Detected After Wake Windows 11 | Dual Monitors Swapping Sides Randomly Fix
