LCL: Always use modeless window for calendar popup. Fixes issue #14059

git-svn-id: trunk@31682 -
This commit is contained in:
juha 2011-07-12 18:33:55 +00:00
parent ff13ce1edd
commit 4d6031177e

View File

@ -70,13 +70,7 @@ begin
PopupForm.FOnReturnDate := OnReturnDate;
PopupForm.OnShow := OnShowHide;
PopupForm.OnHide := OnShowHide;
//TODO: Change to PopupForm.Show when gtk supports non modal forms on top of
//modal forms.
{$IFDEF windows}
PopupForm.Show;
{$ELSE}
PopupForm.ShowModal;
{$ENDIF}
end;
{ TCalendarPopupForm }