diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2024-01-20 08:00:29 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-20 08:00:29 +0000 |
commit | 1dbee391b4e6be991f95a92503e490c95fb00c72 (patch) | |
tree | 7045f9b4b98591e87351d9161a2a8aee6f115617 /modules | |
parent | a06ae54a18df81355cdcedb83032d61d058fab52 (diff) | |
parent | 56676ff923497901d56fcbca1ac549095e71d72d (diff) | |
download | stable-diffusion-webui-gfx803-1dbee391b4e6be991f95a92503e490c95fb00c72.tar.gz stable-diffusion-webui-gfx803-1dbee391b4e6be991f95a92503e490c95fb00c72.tar.bz2 stable-diffusion-webui-gfx803-1dbee391b4e6be991f95a92503e490c95fb00c72.zip |
Merge pull request #14637 from light-and-ray/fix_tab_indexes_resets_after_restart_ui
[Bug] Fix tab indexes are reseted after restart UI
Diffstat (limited to 'modules')
-rw-r--r-- | modules/ui.py | 4 | ||||
-rw-r--r-- | modules/ui_postprocessing.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/modules/ui.py b/modules/ui.py index a716a040..ebd33a85 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -532,7 +532,7 @@ def create_ui(): if category == "image":
with gr.Tabs(elem_id="mode_img2img"):
- img2img_selected_tab = gr.State(0)
+ img2img_selected_tab = gr.Number(value=0, visible=False)
with gr.TabItem('img2img', id='img2img', elem_id="img2img_img2img_tab") as tab_img2img:
init_img = gr.Image(label="Image for img2img", elem_id="img2img_image", show_label=False, source="upload", interactive=True, type="pil", tool="editor", image_mode="RGBA", height=opts.img2img_editor_height)
@@ -613,7 +613,7 @@ def create_ui(): elif category == "dimensions":
with FormRow():
with gr.Column(elem_id="img2img_column_size", scale=4):
- selected_scale_tab = gr.State(value=0)
+ selected_scale_tab = gr.Number(value=0, visible=False)
with gr.Tabs():
with gr.Tab(label="Resize to", elem_id="img2img_tab_resize_to") as tab_scale_to:
diff --git a/modules/ui_postprocessing.py b/modules/ui_postprocessing.py index 7a132ac2..ff22a178 100644 --- a/modules/ui_postprocessing.py +++ b/modules/ui_postprocessing.py @@ -5,7 +5,7 @@ import modules.infotext_utils as parameters_copypaste def create_ui():
dummy_component = gr.Label(visible=False)
- tab_index = gr.State(value=0)
+ tab_index = gr.Number(value=0, visible=False)
with gr.Row(equal_height=False, variant='compact'):
with gr.Column(variant='compact'):
|