mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-09-05 17:44:55 -06:00
ide: Refining incremental search
git-svn-id: svn://ultimatepp.org/upp/trunk@7494 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
6f3c5c0307
commit
41b7ad364a
5 changed files with 22 additions and 13 deletions
|
|
@ -233,7 +233,7 @@ void CodeEditor::SelectionChanged()
|
|||
Refresh();
|
||||
}
|
||||
if(!foundsel) {
|
||||
if(!persistent_find_replace && !findreplace.incremental)
|
||||
if(!persistent_find_replace)
|
||||
CloseFindReplace();
|
||||
found = false;
|
||||
notfoundfw = notfoundbk = false;
|
||||
|
|
@ -618,7 +618,7 @@ void CodeEditor::FindWord(bool back)
|
|||
{
|
||||
WString I = GetI();
|
||||
if(!IsNull(I))
|
||||
Find(back, I, true, false, false, false);
|
||||
Find(back, I, true, false, false, false, false);
|
||||
}
|
||||
|
||||
void CodeEditor::SetI(Ctrl *edit)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue