mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 10:18:05 +02:00
Qt5: fixed crash with uninitialized menubar. issue #41271
This commit is contained in:
parent
8477f6087d
commit
7ae7202855
@ -1033,18 +1033,21 @@ begin
|
||||
if Assigned(TCustomForm(AWinControl).Menu) then
|
||||
begin
|
||||
AWin := TQtMainWindow(AWinControl.Handle);
|
||||
AWin.MenuBar.sizeHint(@ASize);
|
||||
// geometry isn't updated yet
|
||||
if ASize.cy < 10 then
|
||||
ASize.cy := 0;
|
||||
// we must use real geometry, and then exclude menubar height.
|
||||
aClientRect := AWin.getGeometry;
|
||||
Types.OffsetRect(aClientRect, -aClientRect.Left, -aClientRect.Top);
|
||||
dec(AClientRect.Bottom, ASize.cy);
|
||||
{$IFDEF VerboseQtResize}
|
||||
DebugLn('TQtWSCustomForm.getDefaultClientRect ',dbgsName(AWinControl),' ',dbgs(AWin.getClientBounds),' mnuBarHeight ',dbgs(AWin.MenuBar.getHeight),' ASize=',dbgs(ASize),' FINAL=',dbgs(AClientRect));
|
||||
{$ENDIF}
|
||||
Result := True;
|
||||
if Assigned(AWin.MenuBar) then
|
||||
begin
|
||||
AWin.MenuBar.sizeHint(@ASize);
|
||||
// geometry isn't updated yet
|
||||
if ASize.cy < 10 then
|
||||
ASize.cy := 0;
|
||||
// we must use real geometry, and then exclude menubar height.
|
||||
aClientRect := AWin.getGeometry;
|
||||
Types.OffsetRect(aClientRect, -aClientRect.Left, -aClientRect.Top);
|
||||
dec(AClientRect.Bottom, ASize.cy);
|
||||
{$IFDEF VerboseQtResize}
|
||||
DebugLn('TQtWSCustomForm.getDefaultClientRect ',dbgsName(AWinControl),' ',dbgs(AWin.getClientBounds),' mnuBarHeight ',dbgs(AWin.MenuBar.getHeight),' ASize=',dbgs(ASize),' FINAL=',dbgs(AClientRect));
|
||||
{$ENDIF}
|
||||
Result := True;
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user