fix, new diff dialog action didn't work due to with statement

also the position in view was reset, which was not something
  we want
This commit is contained in:
Basile Burg 2020-05-02 10:19:21 +02:00
parent 64a1b24e9f
commit 739d7225cf
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,9 @@
# v3.9.2-dev
## Bugs fixed
- Editor, Diff: the button used to "reload from disk and reset the history" didn't work.
# v3.9.1 # v3.9.1
## Bugs fixed ## Bugs fixed

View File

@ -3449,6 +3449,7 @@ var
curMd5 : TMDDigest; curMd5 : TMDDigest;
str : TStringList; str : TStringList;
newTxt : string; newTxt : string;
p : TPoint;
begin begin
if fDiffDialogWillClose or fDisableFileDateCheck then if fDiffDialogWillClose or fDisableFileDateCheck then
exit; exit;
@ -3488,9 +3489,11 @@ begin
end; end;
mrAll: mrAll:
begin begin
p := self.CaretXY;
fModified := false; fModified := false;
text := newTxt; self.text := newTxt;
fFileDate := newDate; fFileDate := newDate;
CaretXY := p;
end; end;
mrIgnore: mrIgnore:
begin begin