From 6979d1f710fce4f98dcf93d7dc3d299c4f776e5d Mon Sep 17 00:00:00 2001 From: vsr Date: Thu, 19 Mar 2015 15:44:36 +0300 Subject: [PATCH] 0023025: [CEA 1444] In built-in server mode, the mouse becomes a hourglass pointer while rotating the view --- src/PVGUI/PVGUI_Module.cxx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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() { -- 2.39.2