mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 03:37:54 +02:00
LCL: Call OnShow event also for a maximized form. Issue #40043.
(cherry picked from commit 49c7830b4a
)
This commit is contained in:
parent
c2a150431d
commit
f65827c58b
@ -706,7 +706,7 @@ begin
|
||||
end;
|
||||
{ call onShow() or onActivate() for the first time,
|
||||
after first OnResize() and OnChangeBounds() }
|
||||
if FDelayedOnResize and FDelayedOnChangeBounds then
|
||||
if (FDelayedOnResize or FDelayedOnChangeBounds) and Visible then
|
||||
begin
|
||||
if FIsFirstOnShow then
|
||||
begin
|
||||
|
Loading…
Reference in New Issue
Block a user