forked from organicmaps/organicmaps-tmp
[Qt] Fixed info dialog hanging after opening external links
This commit is contained in:
parent
1fdbf36a02
commit
a3bed656eb
2 changed files with 4 additions and 2 deletions
|
@ -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);
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Add table
Reference in a new issue