]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
http://qa.nnov.opencascade.com/mantis/view.php?id=265 V5_1_10
authormtn <mtn@opencascade.com>
Fri, 3 Dec 2010 13:41:15 +0000 (13:41 +0000)
committermtn <mtn@opencascade.com>
Fri, 3 Dec 2010 13:41:15 +0000 (13:41 +0000)
src/ObjBrowser/OB_Browser.cxx

index 1bf8769f7ef4800a16e68117dfdc09fe97a0ea68..22c5867d83e57dfea84b30aaefbe5428ea1b439b 100755 (executable)
@@ -38,6 +38,8 @@
 #include <QAbstractItemModel>
 #include <QAbstractItemDelegate>
 #include <QHeaderView>
+// MTN. Fix for kallisto internal 265
+#include <QApplication>
 
 #include <time.h>
 
@@ -864,12 +866,16 @@ void OB_Browser::setModified()
 */
 void OB_Browser::onExpandAll()
 {
+// MTN. Fix for kallisto internal 265
+  QApplication::setOverrideCursor( Qt::WaitCursor );
   QModelIndexList indexes = selectedIndexes();
   QModelIndex index;
 
   foreach ( index, indexes ) {
     myView->expandAll( index );
   }
+// MTN. Fix for kallisto internal 265
+  QApplication::restoreOverrideCursor();
 }
 
 /*!
@@ -879,12 +885,16 @@ void OB_Browser::onExpandAll()
 */
 void OB_Browser::onCollapseAll()
 {
+// MTN. Fix for kallisto internal 265
+  QApplication::setOverrideCursor( Qt::WaitCursor );
   QModelIndexList indexes = selectedIndexes();
   QModelIndex index;
 
   foreach ( index, indexes ) {
     myView->collapseAll( index );
   }
+// MTN. Fix for kallisto internal 265
+  QApplication::restoreOverrideCursor();
 }
 
 /*!