diff --git a/qt_ui/windows/preferences/QLiberationFirstStartWindow.py b/qt_ui/windows/preferences/QLiberationFirstStartWindow.py index 319b1159..471e1887 100644 --- a/qt_ui/windows/preferences/QLiberationFirstStartWindow.py +++ b/qt_ui/windows/preferences/QLiberationFirstStartWindow.py @@ -89,6 +89,5 @@ class QLiberationFirstStartWindow(QDialog): self.setLayout(layout) def apply(self): - print("Applying changes") if self.preferences.apply(): self.close() diff --git a/qt_ui/windows/preferences/QLiberationPreferences.py b/qt_ui/windows/preferences/QLiberationPreferences.py index 1f5fefa6..072e2417 100644 --- a/qt_ui/windows/preferences/QLiberationPreferences.py +++ b/qt_ui/windows/preferences/QLiberationPreferences.py @@ -124,7 +124,6 @@ class QLiberationPreferences(QFrame): self.edit_dcs_install_dir.setText(install_dir) def apply(self): - print("Applying changes") self.saved_game_dir = self.edit_saved_game_dir.text() self.dcs_install_dir = self.edit_dcs_install_dir.text() self.prefer_liberation_payloads = self.payloads_cb.isChecked() diff --git a/qt_ui/windows/preferences/QLiberationPreferencesWindow.py b/qt_ui/windows/preferences/QLiberationPreferencesWindow.py index 709e70df..6753f594 100644 --- a/qt_ui/windows/preferences/QLiberationPreferencesWindow.py +++ b/qt_ui/windows/preferences/QLiberationPreferencesWindow.py @@ -29,7 +29,4 @@ class QLiberationPreferencesWindow(QDialog): def apply(self): if self.preferences.apply(): - print("Closing") self.close() - else: - print("Not Closing")