Add InitializeWidget before login.

This commit is contained in:
sunwen
2023-08-31 14:26:54 +08:00
parent 20b4d1ce36
commit 28e33da16d
11 changed files with 223 additions and 33 deletions

View File

@@ -152,4 +152,11 @@ bool LoginDialog::isRunning()
return mIsRunning;
}
void LoginDialog::showEvent(QShowEvent* event)
{
QDialog::showEvent(event);
emit loginDialogShown();
}