diff options
| author | nyamatongwe <unknown> | 2001-04-27 12:41:50 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2001-04-27 12:41:50 +0000 | 
| commit | 47c3e67c26e19f237bab42d3a98019add82bb4b5 (patch) | |
| tree | 5a17afae1b3e4d7fd6770f78a5b818ec55cc0997 /src/ScintillaBase.cxx | |
| parent | 9701edb696cc54ae66f1e10fb6e946df1426f71a (diff) | |
| download | scintilla-mirror-47c3e67c26e19f237bab42d3a98019add82bb4b5.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.cxx | 8 | 
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()) { | 
