diff options
author | Neil <nyamatongwe@gmail.com> | 2016-12-01 21:30:17 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2016-12-01 21:30:17 +1100 |
commit | d4843820eba7088d035441e9ecded055ef1cd37f (patch) | |
tree | 1e54cbb41d83d73df74379f3c04112b89fc147b7 | |
parent | c99d34335892ee0b5584f4d48442dae8043536b3 (diff) | |
download | scintilla-mirror-d4843820eba7088d035441e9ecded055ef1cd37f.tar.gz |
Ensure application can override right mouse button by returning FALSE.
-rw-r--r-- | gtk/ScintillaGTK.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
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) |