From c6c31bb2fa6dc6c4cd7ed2eecdf48e91cbec0db7 Mon Sep 17 00:00:00 2001 From: doitux Date: Fri, 23 Jul 2010 16:43:09 +0000 Subject: [PATCH] fix dialog problem --- src/gui/qt/startwindow/startwindowimpl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }