aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-07-15 07:39:02 +0000
committernyamatongwe <devnull@localhost>2000-07-15 07:39:02 +0000
commit0fcb749581b4806a6dba56eb7edb6ceb961ab08e (patch)
tree82c3a4e690d961ad4fc9d74a8ca09dc44f925d4e /src/Editor.cxx
parent08f5c4507d2249b41be1e5f58db204868d1a73b3 (diff)
downloadscintilla-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/Editor.cxx')
-rw-r--r--src/Editor.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx
index cec634363..e7e415c7b 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -117,7 +117,7 @@ Editor::~Editor() {
}
void Editor::Finalise() {
- CancelModes();
+ CancelModes();
}
void Editor::DropGraphics() {
@@ -1960,7 +1960,6 @@ void Editor::LineTranspose() {
}
void Editor::CancelModes() {
- SetEmptySelection(currentPos);
}
int Editor::KeyCommand(UINT iMessage) {