aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/Editor.cxx5
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));