aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2003-01-28 11:38:21 +0000
committernyamatongwe <devnull@localhost>2003-01-28 11:38:21 +0000
commit8b2f9edff24f00343dc1145cde90be4cbe3e4577 (patch)
treea41792ba40c4804eae7e64fefd0d91947d675b5d
parentc76cc3ed821a9f7d489cc41a38b18124a14cde0e (diff)
downloadscintilla-mirror-8b2f9edff24f00343dc1145cde90be4cbe3e4577.tar.gz
Fixed non-focus problem on mouse down reported by Vincent Spader.
-rw-r--r--gtk/ScintillaGTK.cxx2
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) {