mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-13 00:25:27 +02:00
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:
parent
19b76e3331
commit
6c3e1c6aa5
1 changed files with 1 additions and 0 deletions
|
@ -36,6 +36,7 @@ LoginDialog::LoginDialog(QWidget* parent) :
|
|||
_ui->errorLabel->setVisible(false);
|
||||
|
||||
setModal(true);
|
||||
setWindowModality(Qt::WindowModal);
|
||||
setHideOnBlur(false);
|
||||
|
||||
connect(&AccountManager::getInstance(), &AccountManager::loginComplete,
|
||||
|
|
Loading…
Reference in a new issue