LCL: TimePopupForm: Now actually submit the code (which was forgotten in my previous commit r49572 #03e9e040af) that immediately hides the form on deactivate (Issue #0028441).

git-svn-id: trunk@49574 -
This commit is contained in:
bart 2015-07-28 15:54:05 +00:00
parent ac26993488
commit a7f0880392

View File

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