LCL: Fix form icon appearing when modal form opens a border-less second modal form. Issue #41189, patch by @d7_2_laz.

This commit is contained in:
wp_xyz 2024-10-17 19:04:25 +02:00
parent 212b6d0407
commit 939daf5466

View File

@ -222,7 +222,7 @@ begin
if HandleAllocated then
begin
FreeIconHandles;
if BorderStyle <> bsDialog then
if not (BorderStyle in [bsDialog, bsNone]) then // bsNone as workaround for #41189
TWSCustomFormClass(WidgetSetClass).SetIcon(Self, SmallIconHandle, BigIconHandle)
else
TWSCustomFormClass(WidgetSetClass).SetIcon(Self, 0, 0);