From 7e6da17b9f139c36ccc84d8d7ea8d80b77fe7d7c Mon Sep 17 00:00:00 2001 From: bugmaster Date: Thu, 1 Oct 2020 14:42:10 +0300 Subject: [PATCH] 0027922: Samples - Qt sample document window display problem --- samples/qt/Common/src/OcctWindow.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/qt/Common/src/OcctWindow.cxx b/samples/qt/Common/src/OcctWindow.cxx index 767b15f230..0af47c1beb 100644 --- a/samples/qt/Common/src/OcctWindow.cxx +++ b/samples/qt/Common/src/OcctWindow.cxx @@ -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(); } // =======================================================================