Merge pull request #6005 from Cacodemon345/vmm-fixes-3
Start manager inside a timer callback
This commit is contained in:
@@ -635,8 +635,10 @@ main(int argc, char *argv[])
|
||||
// QApplication::setApplicationDisplayName("86Box VM Manager");
|
||||
// vmm.show();
|
||||
// vmm.exec();
|
||||
const auto vmm_main_window = new VMManagerMainWindow();
|
||||
vmm_main_window->show();
|
||||
QTimer::singleShot(0, [] {
|
||||
const auto vmm_main_window = new VMManagerMainWindow();
|
||||
vmm_main_window->show();
|
||||
});
|
||||
QApplication::exec();
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user