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:
Roshni-P 2021-04-24 16:57:14 +05:30 committed by Don HO
parent 9734d81f32
commit f249fc5902

View File

@ -2791,6 +2791,7 @@ void FindReplaceDlg::enableFindInFilesControls(bool isEnable, bool projectPanels
{
// Hide Items
showFindDlgItem(IDC_BACKWARDDIRECTION, !isEnable);
showFindDlgItem(IDWHOLEWORD, !isEnable);
showFindDlgItem(IDWRAP, !isEnable);
showFindDlgItem(IDCCOUNTALL, !isEnable);
showFindDlgItem(IDC_FINDALL_OPENEDFILES, !isEnable);