diff options
author | nyamatongwe <devnull@localhost> | 2000-07-15 07:39:02 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-07-15 07:39:02 +0000 |
commit | 0fcb749581b4806a6dba56eb7edb6ceb961ab08e (patch) | |
tree | 82c3a4e690d961ad4fc9d74a8ca09dc44f925d4e /src/ScintillaBase.cxx | |
parent | 08f5c4507d2249b41be1e5f58db204868d1a73b3 (diff) | |
download | scintilla-mirror-0fcb749581b4806a6dba56eb7edb6ceb961ab08e.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.cxx | 4 |
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); } |