diff options
| author | nyamatongwe <devnull@localhost> | 2000-03-17 06:14:18 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2000-03-17 06:14:18 +0000 |
| commit | 2d501ecd4354bd3596a99e6842cdf0a37b151e72 (patch) | |
| tree | ffc0ce52159b906987d54eef1d4e69237e5ae9fc | |
| parent | b4c576f1e008b738c46d4e1990f0d3cfe40ec331 (diff) | |
| download | scintilla-mirror-2d501ecd4354bd3596a99e6842cdf0a37b151e72.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) { |
