Fix errors from commit f2b697 with --hide-ui-dir-config

f2b69709ea
This commit is contained in:
AngelBottomless 2022-11-05 04:24:42 +09:00 committed by GitHub
parent 89722fb5e4
commit 467d8b967b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1446,17 +1446,19 @@ def create_ui(wrap_gradio_gpu_call):
continue
oldval = opts.data.get(key, None)
setattr(opts, key, value)
try:
setattr(opts, key, value)
except RuntimeError:
continue
if oldval != value:
if opts.data_labels[key].onchange is not None:
opts.data_labels[key].onchange()
changed += 1
opts.save(shared.config_filename)
try:
opts.save(shared.config_filename)
except RuntimeError:
return opts.dumpjson(), f'{changed} settings changed without save.'
return opts.dumpjson(), f'{changed} settings changed.'
def run_settings_single(value, key):