aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <unknown>2003-01-28 11:38:21 +0000
committernyamatongwe <unknown>2003-01-28 11:38:21 +0000
commit556b5616045cdf1cc4e8caddb8ab142e860a225d (patch)
treea41792ba40c4804eae7e64fefd0d91947d675b5d
parentec22e73a01c8c2ee9b27a1ba04c76150a736da65 (diff)
downloadscintilla-mirror-556b5616045cdf1cc4e8caddb8ab142e860a225d.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) {