diff options
author | nyamatongwe <unknown> | 2000-03-17 06:14:18 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-03-17 06:14:18 +0000 |
commit | f33b36eda6c5e2a4bd2b645a4bcbb73df6601537 (patch) | |
tree | ffc0ce52159b906987d54eef1d4e69237e5ae9fc | |
parent | d3f21848004931fd67e04871d9c3a162be23be0d (diff) | |
download | scintilla-mirror-f33b36eda6c5e2a4bd2b645a4bcbb73df6601537.tar.gz |
Fixed return value from Press.
-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 266492fc3..3bd3b0168 100644 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -702,7 +702,7 @@ gint ScintillaGTK::Press(GtkWidget *, GdkEventButton *event, ScintillaGTK *sciTh gdk_window_get_origin(sciThis->wDraw.GetID()->window, &ox, &oy); sciThis->ContextMenu(Point(pt.x + ox, pt.y + oy)); } - return TRUE; + return FALSE; } gint ScintillaGTK::MouseRelease(GtkWidget *, GdkEventButton *event, ScintillaGTK *sciThis) { |