diff options
author | Neil <nyamatongwe@gmail.com> | 2013-08-15 12:59:39 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2013-08-15 12:59:39 +1000 |
commit | c68e1a5ffc74569e4d406e3c904f010390577fcf (patch) | |
tree | 88ff2f08f515b96820f31a4581ebbd22a03b869c /gtk/ScintillaGTK.cxx | |
parent | bb70e95abca64e9df014c0b9adad65a1dbb4eec4 (diff) | |
download | scintilla-mirror-c68e1a5ffc74569e4d406e3c904f010390577fcf.tar.gz |
Use system symbol for constant.
Diffstat (limited to 'gtk/ScintillaGTK.cxx')
-rw-r--r-- | gtk/ScintillaGTK.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx index 8c2d0570b..db9e1ea19 100644 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -1845,7 +1845,7 @@ gint ScintillaGTK::MouseRelease(GtkWidget *widget, GdkEventButton *event) { // If mouse released on scroll bar then the position is relative to the // scrollbar, not the drawing window so just repeat the most recent point. pt = sciThis->ptMouseLast; - sciThis->ButtonUp(pt, event->time, (event->state & 4) != 0); + sciThis->ButtonUp(pt, event->time, (event->state & GDK_CONTROL_MASK) != 0); } } catch (...) { sciThis->errorStatus = SC_STATUS_FAILURE; |