diff options
Diffstat (limited to 'core/browser.vala')
-rw-r--r-- | core/browser.vala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/browser.vala b/core/browser.vala index c1854bbb..f64eda2d 100644 --- a/core/browser.vala +++ b/core/browser.vala @@ -239,12 +239,12 @@ namespace Midori { } public Browser (App app) { - Object (application: app, visible: true, + Object (application: app, web_context: WebKit.WebContext.get_default ()); } public Browser.incognito (App app) { - Object (application: app, visible: true, + Object (application: app, web_context: new WebKit.WebContext.ephemeral ()); profile.sensitive = false; |