I want to make a Modal QDialog appear (with exec()) after the MainWindow appears itself.
I tried to call exec in MainWindow::showEvent ( QShowEvent * event )
but It still show before the MainWindow appears.
Any idea how could achieve this ?
thx.
QMainWindow::showEvent(event);
thenlaunchwidget->exec();
– Matthieu Riegler