From 6c3e1c6aa51f89beaa4e2034fe9ee0e2857843b4 Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Wed, 30 Apr 2014 13:54:41 -0700 Subject: [PATCH] Update LoginDialog to be type Qt::WindowModality Currently the login window will cover other windows, in particular the "welcome" window that pops up for new users. This allows those windows to be interacted with while still blocking interaction with the main window. --- interface/src/ui/LoginDialog.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/interface/src/ui/LoginDialog.cpp b/interface/src/ui/LoginDialog.cpp index 993f355c47..40029b6785 100644 --- a/interface/src/ui/LoginDialog.cpp +++ b/interface/src/ui/LoginDialog.cpp @@ -36,6 +36,7 @@ LoginDialog::LoginDialog(QWidget* parent) : _ui->errorLabel->setVisible(false); setModal(true); + setWindowModality(Qt::WindowModal); setHideOnBlur(false); connect(&AccountManager::getInstance(), &AccountManager::loginComplete,