From 74d502ac294cd78670ee94c8207046c5fa71c2df Mon Sep 17 00:00:00 2001 From: leminlimez <59540996+leminlimez@users.noreply.github.com> Date: Fri, 8 Nov 2024 15:46:51 -0500 Subject: [PATCH] fix ipad models being misaligned --- gui/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/main_window.py b/gui/main_window.py index 92427c6..cc09ae1 100644 --- a/gui/main_window.py +++ b/gui/main_window.py @@ -593,7 +593,7 @@ class MainWindow(QtWidgets.QMainWindow): idx_to_apply = index if index > 0 and not self.device_manager.get_current_device_model().startswith("iPhone"): # offset the index for ipads - idx_to_apply += 7 + idx_to_apply += 6 tweaks["SpoofModel"].set_selected_option(idx_to_apply) print(tweaks["SpoofModel"].value[tweaks["SpoofModel"].selected_option]) tweaks["SpoofHardware"].set_selected_option(idx_to_apply)