From d4843820eba7088d035441e9ecded055ef1cd37f Mon Sep 17 00:00:00 2001 From: Neil Date: Thu, 1 Dec 2016 21:30:17 +1100 Subject: Ensure application can override right mouse button by returning FALSE. --- gtk/ScintillaGTK.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx index 8942a8b91..ae7ff7a16 100644 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -1720,6 +1720,7 @@ gint ScintillaGTK::PressThis(GdkEventButton *event) { bool meta = false; #endif RightButtonDownWithModifiers(pt, event->time, ModifierFlags(shift, ctrl, alt, meta)); + return FALSE; } } else if (event->button == 4) { // Wheel scrolling up (only GTK 1.x does it this way) -- cgit v1.2.3