added hiding items to ui-config.json
This commit is contained in:
parent
073f6eac22
commit
ff107845b4
1 changed files with 5 additions and 2 deletions
|
@ -1050,6 +1050,9 @@ def create_ui(txt2img, img2img, run_extras, run_pnginfo):
|
|||
elif condition is None or condition(saved_value):
|
||||
setattr(obj, field, saved_value)
|
||||
|
||||
if type(x) in [gr.Slider, gr.Radio, gr.Checkbox, gr.Textbox, gr.Number] and x.visible:
|
||||
apply_field(x, 'visible')
|
||||
|
||||
if type(x) == gr.Slider:
|
||||
apply_field(x, 'value')
|
||||
apply_field(x, 'minimum')
|
||||
|
|
Loading…
Reference in a new issue