mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-05 16:16:23 +02:00
ide: fix flicker when resizing MainIDEBar if AutoAdjustIDEHeight is enabled. Issue #29308
git-svn-id: trunk@51113 -
This commit is contained in:
parent
f42e7fcc66
commit
89d6b735e2
@ -713,9 +713,10 @@ end;
|
|||||||
|
|
||||||
procedure TMainIDEBar.Resizing(State: TWindowState);
|
procedure TMainIDEBar.Resizing(State: TWindowState);
|
||||||
begin
|
begin
|
||||||
case State of
|
if not (wcfClientRectNeedsUpdate in FWinControlFlags) then
|
||||||
wsMaximized, wsNormal: DoSetMainIDEHeight(State = wsMaximized);
|
case State of
|
||||||
end;
|
wsMaximized, wsNormal: DoSetMainIDEHeight(State = wsMaximized);
|
||||||
|
end;
|
||||||
|
|
||||||
inherited Resizing(State);
|
inherited Resizing(State);
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user