1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0027922: Samples - Qt sample document window display problem

This commit is contained in:
bugmaster 2020-10-01 14:42:10 +03:00 committed by abv
parent ac5b3cbc0a
commit 7e6da17b9f

View File

@ -152,8 +152,8 @@ Standard_Real OcctWindow::Ratio() const
void OcctWindow::Size ( Standard_Integer& theWidth, Standard_Integer& theHeight ) const
{
QRect aRect = myWidget->rect();
theWidth = aRect.right();
theHeight = aRect.bottom();
theWidth = aRect.width();
theHeight = aRect.height();
}
// =======================================================================