Remove print statements

This commit is contained in:
Raffson 2025-05-06 17:24:29 +02:00
parent 09617adc56
commit 2d65a038ee
No known key found for this signature in database
GPG Key ID: B0402B2C9B764D99
3 changed files with 0 additions and 5 deletions

View File

@ -89,6 +89,5 @@ class QLiberationFirstStartWindow(QDialog):
self.setLayout(layout)
def apply(self):
print("Applying changes")
if self.preferences.apply():
self.close()

View File

@ -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()

View File

@ -29,7 +29,4 @@ class QLiberationPreferencesWindow(QDialog):
def apply(self):
if self.preferences.apply():
print("Closing")
self.close()
else:
print("Not Closing")