Commit 10945aa4 authored by w-e-w's avatar w-e-w
Browse files

only rewrite ui-config when there is change

and a typo
parent de03882d
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1086,6 +1086,7 @@ def create_ui():
        )

    loadsave = ui_loadsave.UiLoadsave(cmd_opts.ui_config_file)
    ui_settings_from_file = loadsave.ui_settings.copy()

    settings = ui_settings.UiSettings()
    settings.create_ui(loadsave, dummy_component)
@@ -1146,6 +1147,7 @@ def create_ui():

        modelmerger_ui.setup_ui(dummy_component=dummy_component, sd_model_checkpoint_component=settings.component_dict['sd_model_checkpoint'])

    if ui_settings_from_file != loadsave.ui_settings:
        loadsave.dump_defaults()
    demo.ui_loadsave = loadsave

+1 −1
Original line number Diff line number Diff line
@@ -144,7 +144,7 @@ class UiLoadsave:
            json.dump(current_ui_settings, file, indent=4, ensure_ascii=False)

    def dump_defaults(self):
        """saves default values to a file unless tjhe file is present and there was an error loading default values at start"""
        """saves default values to a file unless the file is present and there was an error loading default values at start"""

        if self.error_loading and os.path.exists(self.filename):
            return