diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-03-21 05:18:14 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-03-25 06:00:37 +0000 |
commit | 43a0912a07376fd045095de0fea54de098b113ef (patch) | |
tree | 5c06bad2cde8560b31d27cc97822d27fcbb67d82 /modules/ui_common.py | |
parent | 9b2f20540004c47733ee47fb6bf58a41161ac0da (diff) | |
download | stable-diffusion-webui-gfx803-43a0912a07376fd045095de0fea54de098b113ef.tar.gz stable-diffusion-webui-gfx803-43a0912a07376fd045095de0fea54de098b113ef.tar.bz2 stable-diffusion-webui-gfx803-43a0912a07376fd045095de0fea54de098b113ef.zip |
hide delete button for single-item dropdown
more stylistic changes
Diffstat (limited to 'modules/ui_common.py')
-rw-r--r-- | modules/ui_common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ui_common.py b/modules/ui_common.py index d4e00829..7b752b45 100644 --- a/modules/ui_common.py +++ b/modules/ui_common.py @@ -129,7 +129,7 @@ Requested path was: {f} generation_info = None
with gr.Column():
- with gr.Row(elem_id=f"image_buttons_{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":
|