implement about window

This commit is contained in:
Yannik Schmidt
2020-09-03 23:56:33 +02:00
parent 782d34fa35
commit 41c29d43ce
8 changed files with 126 additions and 22 deletions

View File

@@ -96,7 +96,7 @@ void MainWindow::openConfigurationWindow(){
}
void MainWindow::openAboutWindow(){
About *aboutWindow = new About();
About *aboutWindow = new About(this, mySettings);
aboutWindow->setAttribute(Qt::WA_DeleteOnClose);
aboutWindow->show();
}