LCL: In TCustomcalendar, always SetProps in InitializeWnd (issue #0032379). Patch by soner.

git-svn-id: trunk@55820 -
This commit is contained in:
wp 2017-09-08 21:56:24 +00:00
parent 6059f5a7dd
commit 5d3204f042

View File

@ -201,7 +201,8 @@ end;
procedure TCustomCalendar.InitializeWnd;
begin
inherited InitializeWnd;
if FPropsChanged then SetProps;
//if FPropsChanged then // removed to fix issue #0032379
SetProps;
end;
procedure TCustomCalendar.DestroyWnd;