Turn off "Match Case" and "Whole Word" options by default in Find In Finder
Fix #13415, close #13427
This commit is contained in:
parent
ecf6eba681
commit
c7e9440179
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue