diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-link.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-link.c b/src/ephy-link.c index 7b5099adb..623f7117a 100644 --- a/src/ephy-link.c +++ b/src/ephy-link.c @@ -108,7 +108,7 @@ ephy_link_flags_from_current_event (void) ephy_gui_get_current_event (&type, &state, &button);
- if (button == 2 && type == GDK_BUTTON_PRESS)
+ if (button == 2 && (type == GDK_BUTTON_PRESS || type == GDK_BUTTON_RELEASE))
{
if (state == GDK_SHIFT_MASK)
{
|