diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-04-29 06:30:33 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-29 06:30:33 +0000 |
commit | a33d49cc572214494e1e5f1fdcc4f422b370eae1 (patch) | |
tree | dd4e0baa7eb4a256f2bd74dd917abd56e604a37a /modules/ui.py | |
parent | c19618f37059b425b1e53429ad8def2caa78cdec (diff) | |
parent | 7fc10e04456878ac4e0881dbfe56c8966e22f40d (diff) | |
download | stable-diffusion-webui-gfx803-a33d49cc572214494e1e5f1fdcc4f422b370eae1.tar.gz stable-diffusion-webui-gfx803-a33d49cc572214494e1e5f1fdcc4f422b370eae1.tar.bz2 stable-diffusion-webui-gfx803-a33d49cc572214494e1e5f1fdcc4f422b370eae1.zip |
Merge branch 'dev' into fix_batch_processing
Diffstat (limited to 'modules/ui.py')
-rw-r--r-- | modules/ui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ui.py b/modules/ui.py index 627fbe0b..dd28bdbb 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -1204,7 +1204,7 @@ def create_ui(): with gr.Column(elem_id='ti_gallery_container'):
ti_output = gr.Text(elem_id="ti_output", value="", show_label=False)
- ti_gallery = gr.Gallery(label='Output', show_label=False, elem_id='ti_gallery').style(grid=4)
+ ti_gallery = gr.Gallery(label='Output', show_label=False, elem_id='ti_gallery').style(columns=4)
ti_progress = gr.HTML(elem_id="ti_progress", value="")
ti_outcome = gr.HTML(elem_id="ti_error", value="")
|