From f6730a90b5ebaf6b271a5aa1b6a3f098b258c51a Mon Sep 17 00:00:00 2001 From: DeepBeepMeep Date: Thu, 20 Mar 2025 00:37:54 +0100 Subject: [PATCH] fixed slight ui glitch --- gradio_server.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gradio_server.py b/gradio_server.py index ff9c4db..1950beb 100644 --- a/gradio_server.py +++ b/gradio_server.py @@ -1929,9 +1929,8 @@ def create_demo(): flow_shift = gr.Slider(0.0, 25.0, value= default_flow_shift, step=0.1, label="Shift Scale") with gr.Row(): negative_prompt = gr.Textbox(label="Negative Prompt", value="") - with gr.Row(): - gr.Markdown("Loras can be used to create special effects on the video by mentioned a trigger word in the Prompt. You can save Loras combinations in presets.") with gr.Column() as loras_column: + gr.Markdown("Loras can be used to create special effects on the video by mentioned a trigger word in the Prompt. You can save Loras combinations in presets.") loras_choices = gr.Dropdown( choices=[ (lora_name, str(i) ) for i, lora_name in enumerate(loras_names)