diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2020-12-04 18:48:05 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2020-12-04 18:48:05 +0100 |
commit | 912b239812e80b9c4c8e65985d3749f8b7e2be64 (patch) | |
tree | 01539557ed2aa1b262232f85190f8ad3ce000e0e /plugins/common/WebAuthenticationPane.vala | |
parent | bc5a1f54de14f594cea13662c34080b7623e0e2e (diff) | |
parent | 62419f2d51a3a9dda833aaeeb9e5bc7c4af547d6 (diff) |
Update upstream source from tag 'upstream/0.30.11'
Update to upstream version '0.30.11'
with Debian dir 2335b0f4478de84bce38f278ef548b565a42fd23
Diffstat (limited to 'plugins/common/WebAuthenticationPane.vala')
-rw-r--r-- | plugins/common/WebAuthenticationPane.vala | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/common/WebAuthenticationPane.vala b/plugins/common/WebAuthenticationPane.vala index 669e339..02cffb2 100644 --- a/plugins/common/WebAuthenticationPane.vala +++ b/plugins/common/WebAuthenticationPane.vala @@ -30,6 +30,10 @@ namespace Shotwell.Plugins.Common { public override void constructed () { base.constructed (); + var ctx = WebKit.WebContext.get_default(); + if (!ctx.get_sandbox_enabled()) { + ctx.set_sandbox_enabled(true); + } var box = new Gtk.Box(Gtk.Orientation.VERTICAL, 4); this.widget = box; |