From 1e22cde8ef5683007e189f466b4cce8d94ba85ca Mon Sep 17 00:00:00 2001 From: lllyasviel Date: Thu, 25 Jan 2024 07:12:43 -0800 Subject: [PATCH] Update ui_settings.py --- modules/ui_settings.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/ui_settings.py b/modules/ui_settings.py index e054d00a..24a7f2aa 100644 --- a/modules/ui_settings.py +++ b/modules/ui_settings.py @@ -294,7 +294,6 @@ class UiSettings: for _i, k, _item in self.quicksettings_list: component = self.component_dict[k] - info = opts.data_labels[k] if isinstance(component, gr.Textbox): methods = [component.submit, component.blur] @@ -308,7 +307,7 @@ class UiSettings: fn=lambda value, k=k: self.run_settings_single(value, key=k), inputs=[component], outputs=[component, self.text_settings], - show_progress=info.refresh is not None, + show_progress=False, ) button_set_checkpoint = gr.Button('Change checkpoint', elem_id='change_checkpoint', visible=False)