Gtk3: do not call DoAdjustClientRectChange if we are already in update by lcl.

This commit is contained in:
zeljan1 2025-03-27 20:58:46 +01:00
parent 28554adf44
commit f29a74fde8

View File

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