From 47c3e67c26e19f237bab42d3a98019add82bb4b5 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Fri, 27 Apr 2001 12:41:50 +0000 Subject: Feature from Stephan to allow autocompletion to stay open even when there are no longer any values that start with the typed text. --- src/ScintillaBase.cxx | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/ScintillaBase.cxx') 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(lParam)); break; + case SCI_AUTOCSETAUTOHIDE: + ac.autoHide = wParam; + break; + + case SCI_AUTOCGETAUTOHIDE: + return ac.autoHide; + break; + case SCI_CALLTIPSHOW: { AutoCompleteCancel(); if (!ct.wCallTip.Created()) { -- cgit v1.2.3