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
## Bugs fixed

View File

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