diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-03-25 09:08:24 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-25 09:08:24 +0000 |
commit | 8dbe793af53194ff3054bfbc9529a10f961bdbd3 (patch) | |
tree | 087f31c96c6b0280c75cfca4380638cde72ff90e /modules/ui_common.py | |
parent | 8e3ced73a8c8f435809de544e0574da265177289 (diff) | |
parent | 70615448b2ef3285dba9bb1992974cb1eaf10995 (diff) | |
download | stable-diffusion-webui-gfx803-8dbe793af53194ff3054bfbc9529a10f961bdbd3.tar.gz stable-diffusion-webui-gfx803-8dbe793af53194ff3054bfbc9529a10f961bdbd3.tar.bz2 stable-diffusion-webui-gfx803-8dbe793af53194ff3054bfbc9529a10f961bdbd3.zip |
Merge branch 'master' into extra-network-info
Diffstat (limited to 'modules/ui_common.py')
-rw-r--r-- | modules/ui_common.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/ui_common.py b/modules/ui_common.py index a12433d2..7b752b45 100644 --- a/modules/ui_common.py +++ b/modules/ui_common.py @@ -129,8 +129,8 @@ Requested path was: {f} generation_info = None
with gr.Column():
- with gr.Row(elem_id=f"image_buttons_{tabname}"):
- open_folder_button = gr.Button(folder_symbol, elem_id="hidden_element" if shared.cmd_opts.hide_ui_dir_config else f'open_folder_{tabname}')
+ with gr.Row(elem_id=f"image_buttons_{tabname}", elem_classes="image-buttons"):
+ open_folder_button = gr.Button(folder_symbol, visible=not shared.cmd_opts.hide_ui_dir_config)
if tabname != "extras":
save = gr.Button('Save', elem_id=f'save_{tabname}')
@@ -160,6 +160,7 @@ Requested path was: {f} _js="function(x, y, z){ return [x, y, selected_gallery_index()] }",
inputs=[generation_info, html_info, html_info],
outputs=[html_info, html_info],
+ show_progress=False,
)
save.click(
|