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:
zeljko 2010-03-27 19:13:13 +00:00
parent 5482a98b94
commit 6c6bdd4c89

View File

@ -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