fix upstream reg after adding the selection as search & replace scope

This commit is contained in:
Basile Burg 2019-03-31 14:02:51 +02:00
parent 6fa4cf43f5
commit d426bca8d5
1 changed files with 6 additions and 1 deletions

View File

@ -594,11 +594,16 @@ begin
fDoc.OnReplaceText := @replaceEvent
else if fFindScope = scSel then
begin
fDoc.CaretXY := fDocSelStart;
fDoc.OnReplaceText := @replaceInSelEvent;
// the event only called if ssoPrompt is included
opts += [ssoPrompt];
end;
fDoc.CaretXY := fDocSelStart;
if fFindScope <> scSel then
begin
fDoc.CaretXY := Point(1,1);
fDocSelStop := Point(high(integer), high(integer));
end;
while(true) do
begin
if fDoc.SearchReplace(fToFind, fReplaceWth, opts) = 0 then