Anchordocking: Fix loading. Don't constrain splitter bounds, until they are loaded and have a percent position. Issue #41331

This commit is contained in:
Martin 2025-01-12 22:17:44 +01:00
parent 585c3e4abb
commit 66ccefcd0f

View File

@ -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