[Qt] Fixed info dialog hanging after opening external links

This commit is contained in:
Alex Zolotarev 2011-03-08 00:11:28 +00:00 committed by Alex Zolotarev
parent 1fdbf36a02
commit a3bed656eb
2 changed files with 4 additions and 2 deletions

View file

@ -5,7 +5,6 @@
#include <QtGui/QPushButton>
#include <QtGui/QHBoxLayout>
#include <QtGui/QVBoxLayout>
#include <QtGui/QLabel>
namespace qt
@ -17,7 +16,8 @@ namespace qt
QIcon icon(":logo.png");
setWindowIcon(icon);
setWindowTitle(title);
setFocus();
setFocusPolicy(Qt::StrongFocus);
setWindowModality(Qt::WindowModal);
QVBoxLayout * vBox = new QVBoxLayout();
QLabel * label = new QLabel(text);

View file

@ -58,6 +58,8 @@ namespace qt
UpdateDialog::UpdateDialog(QWidget * parent, Storage & storage)
: QDialog(parent), m_storage(storage)
{
setWindowModality(Qt::WindowModal);
string timeString;
if (!Settings::Get(LAST_CHECK_TIME_KEY, timeString))
timeString = "Never checked";