Merge pull request #6004 from 86Box/feature/vmm-config-toggle

Enable VM Manager by default
This commit is contained in:
Miran Grča
2025-08-21 20:57:38 +02:00
committed by GitHub
9 changed files with 94 additions and 54 deletions

View File

@@ -584,7 +584,7 @@ main(int argc, char *argv[])
return 0;
}
if (!vmm_enabled)
if (!start_vmm)
#ifdef Q_OS_MACOS
qt_set_sequence_auto_mnemonic(false);
#else
@@ -625,10 +625,7 @@ main(int argc, char *argv[])
return 6;
}
if (!vmm_enabled)
pc_init_modules();
if (vmm_enabled) {
if (start_vmm) {
// VMManagerMain vmm;
// // Hackish until there is a proper solution
// QApplication::setApplicationName("86Box VM Manager");
@@ -643,6 +640,8 @@ main(int argc, char *argv[])
return 0;
}
pc_init_modules();
// UUID / copy / move detection
if(!util::compareUuid()) {
QMessageBox movewarnbox;