diff options
author | nyamatongwe <unknown> | 2001-09-08 23:33:21 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-09-08 23:33:21 +0000 |
commit | 562defb654287d14d8f5cad5645b186ff7e1190b (patch) | |
tree | b7279332520c5203ca936dd6375862fa74464767 | |
parent | c3763b4bc2858919ed5dce8c5d88fa4d0d59e37e (diff) | |
download | scintilla-mirror-562defb654287d14d8f5cad5645b186ff7e1190b.tar.gz |
Handle SCI_HIDESELECTION message.
-rw-r--r-- | src/Editor.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 8fbb94d71..2171924f0 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -3730,6 +3730,11 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) { return len; // Not including NUL } + case SCI_HIDESELECTION: + hideSelection = wParam; + Redraw(); + break; + case SCI_FORMATRANGE: return FormatRange(wParam, reinterpret_cast<RangeToFormat *>(lParam)); |