From beeca28ccd5caedb9f8eec7108d5803928799064 Mon Sep 17 00:00:00 2001 From: "METANEOCORTEX\\Kotti" Date: Thu, 7 Mar 2024 11:19:52 +0100 Subject: [PATCH] +chg: line number margin option: switched from sub-line selection to whole-line selection --- src/Notepad3.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Notepad3.c b/src/Notepad3.c index 30d4958f7..6dd8481f5 100644 --- a/src/Notepad3.c +++ b/src/Notepad3.c @@ -2644,7 +2644,8 @@ static void _InitializeSciEditCtrl(HWND hwndEditCtrl) SciCall_SetEdgeColumn(Settings.LongLinesLimit); // general margin - SciCall_SetMarginOptions(SC_MARGINOPTION_SUBLINESELECT); + SciCall_SetMarginOptions(SC_MARGINOPTION_NONE); // whole line select + //SciCall_SetMarginOptions(SC_MARGINOPTION_SUBLINESELECT); // Nonprinting characters SciCall_SetViewWS(Settings.ViewWhiteSpace ? SCWS_VISIBLEALWAYS : SCWS_INVISIBLE);