TFindDialog: save FFindForm position upon close.

git-svn-id: trunk@59050 -
This commit is contained in:
bart 2018-09-17 20:32:42 +00:00
parent d8993e1b36
commit b01af43fc3

View File

@ -407,6 +407,8 @@ end;
procedure TFindDialog.DoCloseForm(Sender: TObject; var CloseAction: TCloseAction);
begin
if csDesigning in ComponentState then exit;
FFormTop := FFindForm.Top;
FFormLeft := FFindForm.Left;
if Assigned(OnClose) then OnClose(Self);
end;