Skip to content

Commit 7a23473

Browse files
committed
WPF - Browser not correctly refreshing on Resize (workaround)
- Disable GPU compositing Issue #4953
1 parent ccb3dc8 commit 7a23473

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

CefSharp.Wpf/CefSettings.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ public CefSettings() : base()
3030
// Disable "Restore pages" popup after incorrect shutdown
3131
// https://github.com/chromiumembedded/cef/issues/3767
3232
CefCommandLineArgs.Add("hide-crash-restore-bubble");
33+
34+
// Browser not correctly refreshing on Resize
35+
// https://github.com/cefsharp/CefSharp/issues/4953
36+
CefCommandLineArgs.Add("disable-gpu-compositing");
3337
}
3438
}
3539
}

0 commit comments

Comments
 (0)