diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-03-21 05:18:14 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-03-21 05:18:14 +0000 |
commit | f93547be18641039aca24e8166f0ed7d495da15e (patch) | |
tree | 808389d985d29cbe5f84aa846f58985a97ac3dbf /modules/ui_common.py | |
parent | 46482decd5ec7c15811e1db5f992b0f616472cfe (diff) | |
download | stable-diffusion-webui-gfx803-f93547be18641039aca24e8166f0ed7d495da15e.tar.gz stable-diffusion-webui-gfx803-f93547be18641039aca24e8166f0ed7d495da15e.tar.bz2 stable-diffusion-webui-gfx803-f93547be18641039aca24e8166f0ed7d495da15e.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":
|