diff options
author | Claudio Saavedra <csaavedra@igalia.com> | 2012-09-03 18:06:28 +0800 |
---|---|---|
committer | Claudio Saavedra <csaavedra@igalia.com> | 2012-09-03 18:09:17 +0800 |
commit | 0fc791e776d61d83d67c2984a003a2f42bd769d1 (patch) | |
tree | c5614c31b28cf13d1eaa56599440e1faf5ef6c27 /src/ephy-window.c | |
parent | 15f5d26043fa4b9d8f83aaa0d13347b5a3218ec5 (diff) | |
download | gsoc2013-epiphany-0fc791e776d61d83d67c2984a003a2f42bd769d1.tar.gz gsoc2013-epiphany-0fc791e776d61d83d67c2984a003a2f42bd769d1.tar.zst gsoc2013-epiphany-0fc791e776d61d83d67c2984a003a2f42bd769d1.zip |
ephy-window: handle key modifiers on overview::item-activate
So that middle-click, for instance, opens a new tab. Notice that
control-click will still not work, as the GdMainView widget is handling
the event to emit its selection-mode-request signal.
https://bugzilla.gnome.org/show_bug.cgi?id=683187
Diffstat (limited to 'src/ephy-window.c')
-rw-r--r-- | src/ephy-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c index ba4c10913..990b89c42 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -2144,7 +2144,7 @@ overview_open_link_cb (EphyOverview *overview, const char *url, EphyWindow *window) { - ephy_link_open (EPHY_LINK (window), url, NULL, 0); + ephy_link_open (EPHY_LINK (window), url, NULL, ephy_link_flags_from_current_event ()); } static void |