Turn off "Match Case" and "Whole Word" options by default in Find In Finder

Fix #13415, close #13427
This commit is contained in:
Alan Kilborn 2023-03-26 13:02:00 -04:00 committed by Don Ho
parent ecf6eba681
commit c7e9440179
1 changed files with 4 additions and 0 deletions

View File

@ -228,6 +228,10 @@ public:
}; };
void doDialog(Finder *launcher, bool isRTL = false); void doDialog(Finder *launcher, bool isRTL = false);
FindOption & getOption() { return _options; } FindOption & getOption() { return _options; }
FindInFinderDlg() {
_options._isMatchCase = false;
_options._isWholeWord = false;
};
private: private:
Finder *_pFinder2Search = nullptr; Finder *_pFinder2Search = nullptr;