From: vsr Date: Thu, 19 Mar 2015 12:44:36 +0000 (+0300) Subject: 0023025: [CEA 1444] In built-in server mode, the mouse becomes a hourglass pointer... X-Git-Tag: V7_6_0a1~2^2~8 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=6979d1f710fce4f98dcf93d7dc3d299c4f776e5d;p=modules%2Fparavis.git 0023025: [CEA 1444] In built-in server mode, the mouse becomes a hourglass pointer while rotating the view --- diff --git a/src/PVGUI/PVGUI_Module.cxx b/src/PVGUI/PVGUI_Module.cxx index f7a5860b..d134e80a 100644 --- a/src/PVGUI/PVGUI_Module.cxx +++ b/src/PVGUI/PVGUI_Module.cxx @@ -448,7 +448,10 @@ void PVGUI_Module::initialize( CAM_Application* app ) */ void PVGUI_Module::onStartProgress() { - QApplication::setOverrideCursor(Qt::WaitCursor); + // VSR 19/03/2015, issue 0023025 + // next line is commented: it is bad idea to show wait cursor on ANY vtk event + // moreover, it does not work when running pvserver with --multi-client mode + //QApplication::setOverrideCursor(Qt::WaitCursor); } /*! @@ -456,7 +459,10 @@ void PVGUI_Module::onStartProgress() */ void PVGUI_Module::onEndProgress() { - QApplication::restoreOverrideCursor(); + // VSR 19/03/2015, issue 0023025 + // next line is commented: it is bad idea to show wait cursor on ANY vtk event + // moreover, it does not work when running pvserver with --multi-client mode + //QApplication::restoreOverrideCursor(); } void PVGUI_Module::onDataRepresentationUpdated() {