mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Do not show progress info when running from unit tests
This commit is contained in:
@@ -76,7 +76,10 @@ ProgressInfo::ProgressInfo(size_t maxProgressValue, const QString& title)
|
|||||||
{
|
{
|
||||||
ProgressInfoStatic::start(maxProgressValue, title);
|
ProgressInfoStatic::start(maxProgressValue, title);
|
||||||
|
|
||||||
QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
|
if (qApp)
|
||||||
|
{
|
||||||
|
QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
@@ -86,7 +89,10 @@ ProgressInfo::~ProgressInfo()
|
|||||||
{
|
{
|
||||||
ProgressInfoStatic::finished();
|
ProgressInfoStatic::finished();
|
||||||
|
|
||||||
QApplication::restoreOverrideCursor();
|
if (qApp)
|
||||||
|
{
|
||||||
|
QApplication::restoreOverrideCursor();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
|||||||
Reference in New Issue
Block a user