lots of ux improvements and small bug fixes

This commit is contained in:
Andrew Ward
2025-03-22 12:18:40 +00:00
parent 0e3cb8925a
commit a2a7c6f9a5
9 changed files with 81 additions and 42 deletions

View File

@@ -87,7 +87,7 @@ class SettingsManager:
settings_file = cls.get_settings_file_path()
with open(settings_file, "w") as f:
json.dump(settings, f)
json.dump(settings, f, indent=4)
@classmethod
def update_settings(cls, partial_settings):