diff --git a/src/gui/qt/startwindow/startwindowimpl.cpp b/src/gui/qt/startwindow/startwindowimpl.cpp
index 5f7a1fff..2afc5b83 100644
--- a/src/gui/qt/startwindow/startwindowimpl.cpp
+++ b/src/gui/qt/startwindow/startwindowimpl.cpp
@@ -880,7 +880,7 @@ void startWindowImpl::networkNotification(int notificationId)
tr("A new release of PokerTH is available.
Please go to http://www.pokerth.net and download the latest version."),
QMessageBox::Close, this);
msgBox.setTextFormat(Qt::RichText);
- msgBox.exec();
+ msgBox.show();
}
break;
case NTF_NET_OUTDATED_BETA:
@@ -888,7 +888,7 @@ void startWindowImpl::networkNotification(int notificationId)
tr("This beta release of PokerTH is outdated.
Please go to http://www.pokerth.net and download the latest version."),
QMessageBox::Close, this);
msgBox.setTextFormat(Qt::RichText);
- msgBox.exec();
+ msgBox.show();
}
break;
}