From 6adab369daf0aeb51d5ef04b38747b1f817f8864 Mon Sep 17 00:00:00 2001 From: VoxelTek <53562267+VoxelTek@users.noreply.github.com> Date: Thu, 26 Jun 2025 23:02:42 +1000 Subject: [PATCH] Remove unnecessary Windows-specific code --- CONFIG/MainDlg.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/CONFIG/MainDlg.cpp b/CONFIG/MainDlg.cpp index 0d151639..e2c526f6 100644 --- a/CONFIG/MainDlg.cpp +++ b/CONFIG/MainDlg.cpp @@ -173,17 +173,12 @@ void CMainDialog::launch() QMessageBox::Close ); -#ifdef _WIN32 - if (!QProcess::startDetached("./isle.exe")) { - msgBox.exec(); - } -#else if (!QProcess::startDetached("./isle")) { // Check in isle-config directory if (!QProcess::startDetached("isle")) { // Check in $PATH msgBox.exec(); } } -#endif + QDialog::accept(); }