patch: Removed forgotten prints

This commit is contained in:
Mr Finchum 2025-02-09 17:02:02 +00:00
parent 5b2399b99e
commit f3ba0909f2
2 changed files with 3 additions and 5 deletions

View file

@ -47,8 +47,6 @@ class OptimaLab35(QMainWindow, Ui_MainWindow):
self.o = OptimaManager()
self.u = Utilities(os.path.expanduser("~/.config/OptimaLab35"))
self.app_settings = self.u.load_settings()
print(self.app_settings)
self.thread_pool = QThreadPool() # multi thread ChatGPT
# Initiate internal object
self.exif_file = os.path.expanduser("~/.config/OptimaLab35/exif.yaml")
@ -582,9 +580,7 @@ class SettingsWindow(QMainWindow, Ui_Settings_Window):
msg_box.setStandardButtons(QMessageBox.Ok)
msg_box.exec()
if a[0]:
print("before", self.app_settings)
self.app_settings["theme"]["theme_pkg"] = True
print("After:::", self.app_settings)
self.load_settings_into_ui()
else:
self.ui.install_pkg_Button.setEnabled(True)