mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-12 09:56:12 +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;
|
||||
|
||||
// do not loop with LCL
|
||||
if InUpdate then
|
||||
// do not loop with LCL but do not apply it to TQtMainWindow !
|
||||
if not (ClassType = TQtMainWindow) and InUpdate then
|
||||
exit;
|
||||
|
||||
if (NewSize.cx <> LCLObject.Width) or (NewSize.cy <> LCLObject.Height) or
|
||||
|
Loading…
Reference in New Issue
Block a user