summaryrefslogtreecommitdiffstats
path: root/usr
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2018-11-01 00:36:20 +0100
committerPapoteur <papoteur@mageia.org>2018-11-01 20:06:52 +0100
commit173a5942bcf4a8b47d9e8b72e842a144f8d7342b (patch)
tree263de2bd101a39b4a81e692bfd80007f3e144494 /usr
parentd71ec5a279504fe9561b71a820d204202bf31f6b (diff)
downloadmageiawelcome-173a5942bcf4a8b47d9e8b72e842a144f8d7342b.tar
mageiawelcome-173a5942bcf4a8b47d9e8b72e842a144f8d7342b.tar.gz
mageiawelcome-173a5942bcf4a8b47d9e8b72e842a144f8d7342b.tar.bz2
mageiawelcome-173a5942bcf4a8b47d9e8b72e842a144f8d7342b.tar.xz
mageiawelcome-173a5942bcf4a8b47d9e8b72e842a144f8d7342b.zip
fix unusable links with webkit >= 2.16.0
Diffstat (limited to 'usr')
-rw-r--r--usr/share/mageiawelcome/webgui.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/usr/share/mageiawelcome/webgui.py b/usr/share/mageiawelcome/webgui.py
index 6aa36eb..fa94144 100644
--- a/usr/share/mageiawelcome/webgui.py
+++ b/usr/share/mageiawelcome/webgui.py
@@ -81,6 +81,7 @@ def launch_browser(html, quit_function=None, echo=True):
browser = implementation.create_browser()
settings = browser.get_settings()
settings.set_enable_write_console_messages_to_stdout(1)
+ settings.set_allow_universal_access_from_file_urls(1);
browser.connect('context-menu', no_menu)
box = Gtk.VBox(homogeneous=False, spacing=0)