From: ouv Date: Fri, 20 Jan 2006 11:13:23 +0000 (+0000) Subject: Fixed bug GVIEW11283 : POST-PRO: front/bottom/? viewer toolbar buttons work wrong X-Git-Tag: SPDev_start~16 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=ea2737b1faed7e5b13ef3c91edd81ccef0532935;p=modules%2Fgui.git Fixed bug GVIEW11283 : POST-PRO: front/bottom/? viewer toolbar buttons work wrong --- diff --git a/src/SVTK/SVTK_MainWindow.cxx b/src/SVTK/SVTK_MainWindow.cxx index 6b5e8c3f8..ad01609bc 100644 --- a/src/SVTK/SVTK_MainWindow.cxx +++ b/src/SVTK/SVTK_MainWindow.cxx @@ -568,6 +568,7 @@ SVTK_MainWindow ::onFrontView() { GetRenderer()->OnFrontView(); + Repaint(); } //---------------------------------------------------------------------------- @@ -576,6 +577,7 @@ SVTK_MainWindow ::onBackView() { GetRenderer()->OnBackView(); + Repaint(); } //---------------------------------------------------------------------------- @@ -584,6 +586,7 @@ SVTK_MainWindow ::onTopView() { GetRenderer()->OnTopView(); + Repaint(); } //---------------------------------------------------------------------------- @@ -592,6 +595,7 @@ SVTK_MainWindow ::onBottomView() { GetRenderer()->OnBottomView(); + Repaint(); } //---------------------------------------------------------------------------- @@ -600,6 +604,7 @@ SVTK_MainWindow ::onLeftView() { GetRenderer()->OnLeftView(); + Repaint(); } //---------------------------------------------------------------------------- @@ -608,6 +613,7 @@ SVTK_MainWindow ::onRightView() { GetRenderer()->OnRightView(); + Repaint(); } //----------------------------------------------------------------------------