mirror of
https://github.com/notepad-plus-plus/notepad-plus-plus.git
synced 2025-07-21 12:54:42 +02:00
Fix for 'Match Whole Word' option being enabled in Regular Expression Search
Ensured 'Match Whole Word' option is disabled in Regular Expression Search. Fix #9766, close #9792
This commit is contained in:
parent
9734d81f32
commit
f249fc5902
@ -2791,6 +2791,7 @@ void FindReplaceDlg::enableFindInFilesControls(bool isEnable, bool projectPanels
|
|||||||
{
|
{
|
||||||
// Hide Items
|
// Hide Items
|
||||||
showFindDlgItem(IDC_BACKWARDDIRECTION, !isEnable);
|
showFindDlgItem(IDC_BACKWARDDIRECTION, !isEnable);
|
||||||
|
showFindDlgItem(IDWHOLEWORD, !isEnable);
|
||||||
showFindDlgItem(IDWRAP, !isEnable);
|
showFindDlgItem(IDWRAP, !isEnable);
|
||||||
showFindDlgItem(IDCCOUNTALL, !isEnable);
|
showFindDlgItem(IDCCOUNTALL, !isEnable);
|
||||||
showFindDlgItem(IDC_FINDALL_OPENEDFILES, !isEnable);
|
showFindDlgItem(IDC_FINDALL_OPENEDFILES, !isEnable);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user