mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 18:58:12 +02:00
LCL: Fix disappearing taskbar icon when FormStyle is fsNone or fsDialog. Patch by Iluha Companets, issue #41189.
This commit is contained in:
parent
db6685cd02
commit
01640ee298
@ -222,10 +222,11 @@ begin
|
||||
if HandleAllocated then
|
||||
begin
|
||||
FreeIconHandles;
|
||||
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);
|
||||
if (Self = Application.MainForm) or // main form must have icon anyway
|
||||
not (BorderStyle in [bsDialog, bsNone]) then // bsNone as workaround for #41189
|
||||
TWSCustomFormClass(WidgetSetClass).SetIcon(Self, SmallIconHandle, BigIconHandle)
|
||||
else
|
||||
TWSCustomFormClass(WidgetSetClass).SetIcon(Self, 0, 0);
|
||||
end;
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user