aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2010-10-06 10:24:18 +1100
committernyamatongwe <devnull@localhost>2010-10-06 10:24:18 +1100
commit2e3a5bcb34e09833761b6e1fd92030bf1ab26a2a (patch)
tree6ec786877815568b50a1bab24f9ca76e2e787d7b /src
parent40743f3f78e408739283979d975577e9931f11ef (diff)
downloadscintilla-mirror-2e3a5bcb34e09833761b6e1fd92030bf1ab26a2a.tar.gz
Fix for bug #3079114: Set x chosen after autocompletion.
Diffstat (limited to 'src')
-rw-r--r--src/ScintillaBase.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx
index b4accacb9..9467025e8 100644
--- a/src/ScintillaBase.cxx
+++ b/src/ScintillaBase.cxx
@@ -374,6 +374,7 @@ void ScintillaBase::AutoCompleteCompleted() {
pdoc->InsertCString(firstPos, selected);
SetEmptySelection(firstPos + static_cast<int>(strlen(selected)));
}
+ SetLastXChosen();
}
int ScintillaBase::AutoCompleteGetCurrent() {