From 3b26020775090337b37a857908596ffaed6e2038 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Fri, 7 Sep 2007 07:13:48 +0000 Subject: [PATCH] don't show both normal and hyperlink menu when we right click on a link. fixes #3430 --- src/conversation_textview.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/conversation_textview.py b/src/conversation_textview.py index b2b53c510..b21f0ca67 100644 --- a/src/conversation_textview.py +++ b/src/conversation_textview.py @@ -597,6 +597,7 @@ class ConversationTextview: if event.type == gtk.gdk.BUTTON_PRESS: if event.button == 3: # right click self.make_link_menu(event, kind, href) + return True else: # we launch the correct application helpers.launch_browser_mailer(kind, href)