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.
This commit is contained in:
Ryan Huffman 2014-04-30 13:54:41 -07:00
parent 19b76e3331
commit 6c3e1c6aa5

View file

@ -36,6 +36,7 @@ LoginDialog::LoginDialog(QWidget* parent) :
_ui->errorLabel->setVisible(false);
setModal(true);
setWindowModality(Qt::WindowModal);
setHideOnBlur(false);
connect(&AccountManager::getInstance(), &AccountManager::loginComplete,