mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
Merge pull request #2052 from agilob/1973
Disables maximize button on login window
This commit is contained in:
commit
19278f76c1
|
@ -36,6 +36,10 @@ LoginScreen::LoginScreen(QWidget *parent) :
|
|||
{
|
||||
ui->setupUi(this);
|
||||
|
||||
// permanently disables maximize button https://github.com/tux3/qTox/issues/1973
|
||||
this->setWindowFlags(windowFlags() &! Qt::WindowMaximizeButtonHint);
|
||||
this->setFixedSize(this->size());
|
||||
|
||||
connect(&quitShortcut, &QShortcut::activated, this, &LoginScreen::close);
|
||||
connect(ui->newProfilePgbtn, &QPushButton::clicked, this, &LoginScreen::onNewProfilePageClicked);
|
||||
connect(ui->loginPgbtn, &QPushButton::clicked, this, &LoginScreen::onLoginPageClicked);
|
||||
|
@ -105,7 +109,7 @@ void LoginScreen::onLoginPageClicked()
|
|||
}
|
||||
|
||||
void LoginScreen::onCreateNewProfile()
|
||||
{
|
||||
{
|
||||
QString name = ui->newUsername->text();
|
||||
QString pass = ui->newPass->text();
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user