diff options
author | Christian Dywan <christian@twotoasts.de> | 2018-08-28 13:35:39 +0200 |
---|---|---|
committer | Christian Dywan <christian@twotoasts.de> | 2018-09-05 16:53:35 +0200 |
commit | a0ed6ea4524899033cbfbeb17d8a24523218a76f (patch) | |
tree | bc473073bf525a2e74d9e79c39a99d979d678bd0 /core/browser.vala | |
parent | 71fc5286ca718d636e13215d069605835f4933f6 (diff) | |
download | midori-git-execute_action_cli.tar.gz |
Implement (help-)--execute interfaceexecute_action_cli
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; |