aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ScintillaBase.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2001-04-27 12:41:50 +0000
committernyamatongwe <devnull@localhost>2001-04-27 12:41:50 +0000
commit33ce86f2a9e5389f7dd9922eb387936b61364259 (patch)
tree5a17afae1b3e4d7fd6770f78a5b818ec55cc0997 /src/ScintillaBase.cxx
parentc55ee551f806eabd9eb0ca6f501921c08cbda980 (diff)
downloadscintilla-mirror-33ce86f2a9e5389f7dd9922eb387936b61364259.tar.gz
Feature from Stephan to allow autocompletion to stay open even when there
are no longer any values that start with the typed text.
Diffstat (limited to 'src/ScintillaBase.cxx')
-rw-r--r--src/ScintillaBase.cxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx
index ad2e97c90..fe873b0f2 100644
--- a/src/ScintillaBase.cxx
+++ b/src/ScintillaBase.cxx
@@ -459,6 +459,14 @@ sptr_t ScintillaBase::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lPara
AutoCompleteStart(0, reinterpret_cast<const char *>(lParam));
break;
+ case SCI_AUTOCSETAUTOHIDE:
+ ac.autoHide = wParam;
+ break;
+
+ case SCI_AUTOCGETAUTOHIDE:
+ return ac.autoHide;
+ break;
+
case SCI_CALLTIPSHOW: {
AutoCompleteCancel();
if (!ct.wCallTip.Created()) {