]> SALOME platform Git repositories - modules/paravis.git/commitdiff
Salome HOME
0023025: [CEA 1444] In built-in server mode, the mouse becomes a hourglass pointer...
authorvsr <vsr@opencascade.com>
Thu, 19 Mar 2015 12:44:36 +0000 (15:44 +0300)
committervsr <vsr@opencascade.com>
Thu, 19 Mar 2015 12:44:36 +0000 (15:44 +0300)
src/PVGUI/PVGUI_Module.cxx

index f7a5860bc7d0e2509b285b50dd34bb04667a80f3..d134e80a86ce0c10eb5a675017fa1eb50618169d 100644 (file)
@@ -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() {