mainwindow maximise on start

This commit is contained in:
2024-04-14 22:15:45 +02:00
parent 2226da0e44
commit 937dde061a

View File

@@ -7,6 +7,7 @@ MainWindow::MainWindow(QWidget *parent)
, playwindow(new playWindow)
{
ui->setupUi(this);
this->setWindowState(Qt::WindowMaximized);
connect(ui->playButton, &QPushButton::clicked, this, [=]{
playwindow->show();
this->hide();});