From 487df920200f47f6a2d9205efc0fd7ac6df26b93 Mon Sep 17 00:00:00 2001 From: Melon Bread Date: Mon, 4 Mar 2019 01:35:52 -0500 Subject: [PATCH] The manual override UI controls work now --- RetroUFO_GUI.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/RetroUFO_GUI.py b/RetroUFO_GUI.py index 53adec9..23fbf72 100644 --- a/RetroUFO_GUI.py +++ b/RetroUFO_GUI.py @@ -112,9 +112,12 @@ class Form(QDialog): """ Where the magic happens """ # If a platform and/or architecture is not supplied it is grabbed automatically - platform = self.get_platform() # TODO: rename this var to prevent conflict - architecture = self.get_architecture() - location = CORE_LOCATION[platform] + platform = self.cmbboxPlatform.currentText().lower() if not self.chkboxPlatformDetect.isChecked() \ + else self.get_platform() # TODO: rename this var to prevent conflict + architecture = self.cmbboxArchitecture.currentText().lower() if not self.chkboxPlatformDetect.isChecked() \ + else self.get_architecture() + location = self.leditCoreLocation.text() if not self.chkboxLocationDetect.isChecked() \ + else CORE_LOCATION[platform] self.download_cores(platform, architecture) self.extract_cores(location)