Gtk3: simplified code.

This commit is contained in:
zeljan1 2025-03-27 20:04:57 +01:00
parent 59efce7694
commit 28554adf44

View File

@ -9229,14 +9229,14 @@ class procedure TGtk3Window.WindowSizeAllocate(AWidget:PGtkWidget;AGdkRect:
var
Msg: TLMSize;
NewSize: TSize;
ACtl: TGtk3Widget;
ACtl: TGtk3Window;
AState: TGdkWindowState;
Alloc: TGtkAllocation;
ADefW, ADefH: gint;
begin
if AWidget=nil then ;
ACtl := TGtk3Widget(Data);
ACtl := TGtk3Window(Data);
//When gtk3 form is shown for the first time under some window manager there's
//geometry out of sync. We fix it via map-event and WidgetMapped property.
@ -9292,8 +9292,6 @@ begin
Msg.Msg := LM_SIZE;
Msg.SizeType := SIZE_RESTORED;
if ACtl is TGtk3Window then
begin
AState := TGtk3Window(ACtl).getWindowState;
if GDK_WINDOW_STATE_ICONIFIED in AState then
Msg.SizeType := SIZE_MINIMIZED
@ -9303,7 +9301,6 @@ begin
else
if GDK_WINDOW_STATE_FULLSCREEN in AState then
Msg.SizeType := SIZE_FULLSCREEN;
end;
Msg.SizeType := Msg.SizeType or Size_SourceIsInterface;