mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 01:08:12 +02:00
Qt5,Qt6: fixes sizepos loop error. issue #41508
This commit is contained in:
parent
1fb8e5a099
commit
a7c6c82c2b
@ -4440,7 +4440,13 @@ begin
|
||||
{$endif}
|
||||
if Handle = 0 then
|
||||
Exit(False);
|
||||
R := TQtWidget(Handle).getFrameGeometry;
|
||||
if QWidget_isTopLevel(TQtWidget(Handle).Widget) then
|
||||
begin
|
||||
R := Rect(0, 0, 0, 0);
|
||||
if GetWindowRect(Handle, R) = 0 then
|
||||
R := TQtWidget(Handle).getFrameGeometry;
|
||||
end else
|
||||
R := TQtWidget(Handle).getFrameGeometry;
|
||||
Left := R.Left;
|
||||
Top := R.Top;
|
||||
Result := True;
|
||||
|
@ -4467,7 +4467,13 @@ begin
|
||||
{$endif}
|
||||
if Handle = 0 then
|
||||
Exit(False);
|
||||
R := TQtWidget(Handle).getFrameGeometry;
|
||||
if QWidget_isTopLevel(TQtWidget(Handle).Widget) then
|
||||
begin
|
||||
R := Rect(0, 0, 0, 0);
|
||||
if GetWindowRect(Handle, R) = 0 then
|
||||
R := TQtWidget(Handle).getFrameGeometry;
|
||||
end else
|
||||
R := TQtWidget(Handle).getFrameGeometry;
|
||||
Left := R.Left;
|
||||
Top := R.Top;
|
||||
Result := True;
|
||||
|
Loading…
Reference in New Issue
Block a user