From e8a287debb8bae1a7c9851f53b30b3112fe38d0d Mon Sep 17 00:00:00 2001 From: lvmin Date: Thu, 10 Aug 2023 07:08:15 -0700 Subject: [PATCH] i --- webui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui.py b/webui.py index 6377c58..2f43867 100644 --- a/webui.py +++ b/webui.py @@ -11,7 +11,7 @@ with block: with gr.Column(): prompt = gr.Textbox(label="Prompt", value='a handsome man in forest') run_button = gr.Button(label="Run") - result_gallery = gr.Gallery(label='Output', show_label=False, elem_id="gallery", height=700) + result_gallery = gr.Gallery(label='Output', show_label=False, elem_id="gallery", height=1280) run_button.click(fn=generate_clicked, inputs=[prompt], outputs=[result_gallery])