There was an error while loading. Please reload this page.
1 parent 9729fa7 commit 1c41571Copy full SHA for 1c41571
PowerEditor/src/ScitillaComponent/FindReplaceDlg.cpp
@@ -3328,6 +3328,10 @@ void Finder::setFinderStyle()
3328
}
3329
3330
_scintView.execute(SCI_COLOURISE, 0, -1);
3331
+
3332
+// finder fold style follows user preference but use box when user selects none
3333
+ScintillaViewParams& svp = (ScintillaViewParams&)NppParameters::getInstance().getSVP();
3334
+_scintView.setMakerStyle(svp._folderStyle == FOLDER_STYLE_NONE ? FOLDER_STYLE_BOX : svp._folderStyle);
3335
3336
3337
INT_PTR CALLBACK Finder::run_dlgProc(UINT message, WPARAM wParam, LPARAM lParam)
0 commit comments