mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 07:08:23 +02:00
Anchordocking: Fix loading. Don't constrain splitter bounds, until they are loaded and have a percent position. Issue #41331
This commit is contained in:
parent
585c3e4abb
commit
66ccefcd0f
@ -7977,7 +7977,10 @@ end;
|
||||
|
||||
procedure TAnchorDockSplitter.ConstrainBounds(var ALeft, ATop, AWidth, AHeight: integer);
|
||||
begin
|
||||
if Parent = nil then
|
||||
if (Parent = nil) or (not HandleAllocated) or
|
||||
(FPercentPosition <= 0) or
|
||||
((DockMaster <> nil) and (DockMaster.fUpdateCount > 0))
|
||||
then
|
||||
exit;
|
||||
if not (akRight in Anchors) then begin
|
||||
if ALeft + AWidth > Parent.ClientWidth then
|
||||
|
Loading…
Reference in New Issue
Block a user