diff options
| author | nyamatongwe <devnull@localhost> | 2003-01-28 11:38:21 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2003-01-28 11:38:21 +0000 |
| commit | 8b2f9edff24f00343dc1145cde90be4cbe3e4577 (patch) | |
| tree | a41792ba40c4804eae7e64fefd0d91947d675b5d | |
| parent | c76cc3ed821a9f7d489cc41a38b18124a14cde0e (diff) | |
| download | scintilla-mirror-8b2f9edff24f00343dc1145cde90be4cbe3e4577.tar.gz | |
Fixed non-focus problem on mouse down reported by Vincent Spader.
| -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 fc51ed9d6..b7c4b2155 100644 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -1195,7 +1195,7 @@ gint ScintillaGTK::PressThis(GdkEventButton *event) { else SetAdjustmentValue(adjustmentv, topLine + 3); } - return FALSE; + return TRUE; } gint ScintillaGTK::Press(GtkWidget *widget, GdkEventButton *event) { |
