diff options
author | Andray <light.and.ray@gmail.com> | 2024-01-23 17:56:49 +0000 |
---|---|---|
committer | Andray <light.and.ray@gmail.com> | 2024-01-23 17:56:49 +0000 |
commit | 695e24dbceb20f804b14876dbd0d27ea6ea53ea0 (patch) | |
tree | 57a095795974f6ea51550d904b8c38a0577e643a | |
parent | 94d4b3c8e78df41eea431069475e1d35f75d02ff (diff) | |
download | stable-diffusion-webui-gfx803-695e24dbceb20f804b14876dbd0d27ea6ea53ea0.tar.gz stable-diffusion-webui-gfx803-695e24dbceb20f804b14876dbd0d27ea6ea53ea0.tar.bz2 stable-diffusion-webui-gfx803-695e24dbceb20f804b14876dbd0d27ea6ea53ea0.zip |
make extras tab collumns resizable
-rw-r--r-- | modules/ui_postprocessing.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/ui_postprocessing.py b/modules/ui_postprocessing.py index ff22a178..7261c2df 100644 --- a/modules/ui_postprocessing.py +++ b/modules/ui_postprocessing.py @@ -1,13 +1,14 @@ import gradio as gr
from modules import scripts, shared, ui_common, postprocessing, call_queue, ui_toprow
import modules.infotext_utils as parameters_copypaste
+from modules.ui_components import ResizeHandleRow
def create_ui():
dummy_component = gr.Label(visible=False)
tab_index = gr.Number(value=0, visible=False)
- with gr.Row(equal_height=False, variant='compact'):
+ with ResizeHandleRow(equal_height=False, variant='compact'):
with gr.Column(variant='compact'):
with gr.Tabs(elem_id="mode_extras"):
with gr.TabItem('Single Image', id="single_image", elem_id="extras_single_tab") as tab_single:
|