#include <SUIT_Desktop.h>
#include <QLayout>
#include <QPushButton>
+#include <QApplication>
HYDROGUI_BathymetryLimitsDlg::HYDROGUI_BathymetryLimitsDlg( QWidget* theParent )
: QDialog( theParent )
QList<Handle(HYDROGUI_BathymetryPrs)> baths = getShownBathymetries( module() );
bool isUpdateCS = false;
+ qApp->setOverrideCursor( Qt::WaitCursor );
+
switch( myMode )
{
case BathymetryTextId:
if( isUpdateCS )
module()->getOCCDisplayer()->UpdateColorScale( getViewer( module() ) );
+
+ qApp->restoreOverrideCursor();
}