diff options
author | nyamatongwe <unknown> | 2010-10-06 10:24:18 +1100 |
---|---|---|
committer | nyamatongwe <unknown> | 2010-10-06 10:24:18 +1100 |
commit | 1062c8c9cd4325bfa1083929e71cb45af296816d (patch) | |
tree | ec8b1308ef77c2fd4b65dddf0084d9bc6219a0bd /src | |
parent | 5697aad3ea4305c14e7e908b2219c2205d78e05e (diff) | |
download | scintilla-mirror-1062c8c9cd4325bfa1083929e71cb45af296816d.tar.gz |
Fix for bug #3079114: Set x chosen after autocompletion.
Diffstat (limited to 'src')
-rw-r--r-- | src/ScintillaBase.cxx | 1 |
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() { |