fix: fixes #8522 by disconnecting firstShown after the first show event

This commit is contained in:
sithlord48
2025-04-22 13:23:27 -04:00
committed by Nick Bolton
parent 71b6f07220
commit 294348b42b

View File

@ -383,6 +383,9 @@ void MainWindow::firstShown()
return;
m_coreProcess.start();
}
// Do not call firstshow for any more show events
disconnect(this, &MainWindow::shown, this, &MainWindow::firstShown);
}
void MainWindow::settingsChanged(const QString &key)