aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ScintillaBase.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-07-15 07:39:02 +0000
committernyamatongwe <unknown>2000-07-15 07:39:02 +0000
commitfbc8d3a114b6fdf12dfe6f56e3893f935dcb74c3 (patch)
tree82c3a4e690d961ad4fc9d74a8ca09dc44f925d4e /src/ScintillaBase.cxx
parent610b069a39986a922b2281bfb9c8a9d07561cafc (diff)
downloadscintilla-mirror-fbc8d3a114b6fdf12dfe6f56e3893f935dcb74c3.tar.gz
Fixed problem with CancelModes killing drag and drop by setting empty
selection. On GTK+ double click GTK+ events are ignored as this led to prblems in primary selection code.
Diffstat (limited to 'src/ScintillaBase.cxx')
-rw-r--r--src/ScintillaBase.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx
index d381b6739..0d5226f4d 100644
--- a/src/ScintillaBase.cxx
+++ b/src/ScintillaBase.cxx
@@ -283,11 +283,11 @@ void ScintillaBase::ContextMenu(Point pt) {
void ScintillaBase::CancelModes() {
AutoCompleteCancel();
ct.CallTipCancel();
- Editor::CancelModes();
+ Editor::CancelModes();
}
void ScintillaBase::ButtonDown(Point pt, unsigned int curTime, bool shift, bool ctrl, bool alt) {
- CancelModes();
+ CancelModes();
Editor::ButtonDown(pt, curTime, shift, ctrl, alt);
}