mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 11:38:04 +02:00
Gtk3: do not call DoAdjustClientRectChange if we are already in update by lcl.
This commit is contained in:
parent
28554adf44
commit
f29a74fde8
@ -5762,7 +5762,7 @@ begin
|
||||
if (uWidth <> HSize) or (uHeight <> VSize) then
|
||||
PGtkLayout(aWidget)^.set_size(HSize, VSize);
|
||||
|
||||
if TGtk3Widget(Data).LCLObject.ClientRectNeedsInterfaceUpdate then
|
||||
if not TGtk3Widget(Data).InUpdate and TGtk3Widget(Data).LCLObject.ClientRectNeedsInterfaceUpdate then
|
||||
TGtk3Widget(Data).LCLObject.DoAdjustClientRectChange;
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user