File tree Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,10 @@ public CefSettings() : base()
26
26
// the Chrome login prompt is disabled
27
27
// https://github.com/chromiumembedded/cef/issues/3603
28
28
CefCommandLineArgs . Add ( "disable-chrome-login-prompt" ) ;
29
+
30
+ // Disable "Restore pages" popup after incorrect shutdown
31
+ // https://github.com/chromiumembedded/cef/issues/3767
32
+ CefCommandLineArgs . Add ( "hide-crash-restore-bubble" ) ;
29
33
}
30
34
31
35
/// <summary>
Original file line number Diff line number Diff line change @@ -21,6 +21,10 @@ public CefSettings() : base()
21
21
// the Chrome login prompt is disabled
22
22
// https://github.com/chromiumembedded/cef/issues/3603
23
23
CefCommandLineArgs . Add ( "disable-chrome-login-prompt" ) ;
24
+
25
+ // Disable "Restore pages" popup after incorrect shutdown
26
+ // https://github.com/chromiumembedded/cef/issues/3767
27
+ CefCommandLineArgs . Add ( "hide-crash-restore-bubble" ) ;
24
28
}
25
29
}
26
30
}
Original file line number Diff line number Diff line change @@ -27,6 +27,10 @@ public CefSettings() : base()
27
27
// the Chrome login prompt is disabled
28
28
// https://github.com/chromiumembedded/cef/issues/3603
29
29
CefCommandLineArgs . Add ( "disable-chrome-login-prompt" ) ;
30
+
31
+ // Disable "Restore pages" popup after incorrect shutdown
32
+ // https://github.com/chromiumembedded/cef/issues/3767
33
+ CefCommandLineArgs . Add ( "hide-crash-restore-bubble" ) ;
30
34
}
31
35
}
32
36
}
You can’t perform that action at this time.
0 commit comments