diff options
author | Gustavo Noronha Silva <gns@gnome.org> | 2009-12-14 19:24:42 +0800 |
---|---|---|
committer | Gustavo Noronha Silva <gns@gnome.org> | 2009-12-14 19:26:10 +0800 |
commit | a31c25320318115914e009048a4081b2a1b58f50 (patch) | |
tree | 37eb2433db408ed0e02b64febd2ab5927324bd96 /embed | |
parent | 27d6a609d43ec2e6a7a5ee27809a79263af089ad (diff) | |
download | gsoc2013-epiphany-a31c25320318115914e009048a4081b2a1b58f50.tar gsoc2013-epiphany-a31c25320318115914e009048a4081b2a1b58f50.tar.gz gsoc2013-epiphany-a31c25320318115914e009048a4081b2a1b58f50.tar.bz2 gsoc2013-epiphany-a31c25320318115914e009048a4081b2a1b58f50.tar.lz gsoc2013-epiphany-a31c25320318115914e009048a4081b2a1b58f50.tar.xz gsoc2013-epiphany-a31c25320318115914e009048a4081b2a1b58f50.tar.zst gsoc2013-epiphany-a31c25320318115914e009048a4081b2a1b58f50.zip |
Let web pages handle mouse clicks before doing our own handling
This allows applications to provide their own context menus, and
perform their own handling for right-click events.
Bug #603326
Diffstat (limited to 'embed')
-rw-r--r-- | embed/ephy-embed-prefs.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/embed/ephy-embed-prefs.c b/embed/ephy-embed-prefs.c index a7465db10..82885faf1 100644 --- a/embed/ephy-embed-prefs.c +++ b/embed/ephy-embed-prefs.c @@ -251,7 +251,10 @@ ephy_embed_prefs_init (void) settings = webkit_web_settings_new (); /* Hardcoded settings */ - g_object_set (settings, "auto-shrink-images", FALSE, NULL); + g_object_set (settings, + "auto-shrink-images", FALSE, + "enable-default-context-menu", FALSE, + NULL); /* Connections */ connections = g_malloc (sizeof (guint) * G_N_ELEMENTS (webkit_pref_entries)); |