FIX: Don't save properties when cancel operation

This commit is contained in:
Alexander Koblov 2019-01-26 20:32:32 +00:00
commit 09617b80ad

View file

@ -353,6 +353,8 @@ begin
CanClose:= (MyModalResult = mrOK);
end;
ModalResult := MyModalResult;
// Don't save properties when cancel operation
if ModalResult = mrCancel then SessionProperties:= EmptyStr;
end;
end.