LCL: TimePopupForm: Immediately hide the form on deactivate (Issue #0028441).

git-svn-id: trunk@49572 -
This commit is contained in:
bart 2015-07-27 17:01:23 +00:00
parent 56a19261f9
commit 03e9e040af

View File

@ -113,6 +113,8 @@ end;
procedure TTimePopupForm.FormDeactivate(Sender: TObject);
begin
//Immediately hide the form, otherwise it stays visible while e.g. user is draging
//another form (Issue 0028441)
if (not FClosed) then
Close;
end;