mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-14 17:19:19 +02:00
Qt: allow LCL resize message in case of TQtMainWindow since WindowState can be changed in the meantime.
git-svn-id: trunk@24252 -
This commit is contained in:
parent
5482a98b94
commit
6c6bdd4c89
@ -2856,8 +2856,8 @@ begin
|
|||||||
}
|
}
|
||||||
if not Assigned(LCLObject) then exit;
|
if not Assigned(LCLObject) then exit;
|
||||||
|
|
||||||
// do not loop with LCL
|
// do not loop with LCL but do not apply it to TQtMainWindow !
|
||||||
if InUpdate then
|
if not (ClassType = TQtMainWindow) and InUpdate then
|
||||||
exit;
|
exit;
|
||||||
|
|
||||||
if (NewSize.cx <> LCLObject.Width) or (NewSize.cy <> LCLObject.Height) or
|
if (NewSize.cx <> LCLObject.Width) or (NewSize.cy <> LCLObject.Height) or
|
||||||
|
Loading…
Reference in New Issue
Block a user