File tree Expand file tree Collapse file tree 4 files changed +16
-0
lines changed Expand file tree Collapse file tree 4 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,10 @@ public CefSettings() : base()
29
29
// Disable "Restore pages" popup after incorrect shutdown
30
30
// https://github.com/chromiumembedded/cef/issues/3767
31
31
CefCommandLineArgs . Add ( "hide-crash-restore-bubble" ) ;
32
+
33
+ // Disable the back-forward cache
34
+ // https://github.com/cefsharp/CefSharp/issues/4621
35
+ CefCommandLineArgs . Add ( "disable-back-forward-cache" ) ;
32
36
}
33
37
34
38
/// <summary>
Original file line number Diff line number Diff line change @@ -23,6 +23,10 @@ public CefSettings() : base()
23
23
// Disable "Restore pages" popup after incorrect shutdown
24
24
// https://github.com/chromiumembedded/cef/issues/3767
25
25
CefCommandLineArgs . Add ( "hide-crash-restore-bubble" ) ;
26
+
27
+ // Disable the back-forward cache
28
+ // https://github.com/cefsharp/CefSharp/issues/4621
29
+ CefCommandLineArgs . Add ( "disable-back-forward-cache" ) ;
26
30
}
27
31
}
28
32
}
Original file line number Diff line number Diff line change @@ -34,6 +34,10 @@ public CefSettings() : base()
34
34
// Browser not correctly refreshing on Resize
35
35
// https://github.com/cefsharp/CefSharp/issues/4953
36
36
CefCommandLineArgs . Add ( "disable-gpu-compositing" ) ;
37
+
38
+ // Disable the back-forward cache
39
+ // https://github.com/cefsharp/CefSharp/issues/4621
40
+ CefCommandLineArgs . Add ( "disable-back-forward-cache" ) ;
37
41
}
38
42
}
39
43
}
Original file line number Diff line number Diff line change @@ -21,6 +21,10 @@ public CefSettings() : base()
21
21
// Disable "Restore pages" popup after incorrect shutdown
22
22
// https://github.com/chromiumembedded/cef/issues/3767
23
23
CefCommandLineArgs . Add ( "hide-crash-restore-bubble" ) ;
24
+
25
+ // Disable the back-forward cache
26
+ // https://github.com/cefsharp/CefSharp/issues/4621
27
+ CefCommandLineArgs . Add ( "disable-back-forward-cache" ) ;
24
28
}
25
29
}
26
30
}
You can’t perform that action at this time.
0 commit comments