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