mirror of https://gitlab.com/basile.b/dexed.git
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:
parent
64a1b24e9f
commit
739d7225cf
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue