From 5d3204f042b8847fd24bb13f007886deb8d6b3fd Mon Sep 17 00:00:00 2001 From: wp Date: Fri, 8 Sep 2017 21:56:24 +0000 Subject: [PATCH] LCL: In TCustomcalendar, always SetProps in InitializeWnd (issue #0032379). Patch by soner. git-svn-id: trunk@55820 - --- lcl/calendar.pp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lcl/calendar.pp b/lcl/calendar.pp index ed2f3b6fae..be4e002109 100644 --- a/lcl/calendar.pp +++ b/lcl/calendar.pp @@ -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;