diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-23 17:54:17 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-23 17:54:17 +0000 |
commit | 8ffc07b7b1293868a4a3318a87d8de1e0b1cb7ba (patch) | |
tree | 0a3ba0ddc766e04ed52a367576f5699d12594866 | |
parent | 00653277268c02695b17de7607f4d14364d50d6b (diff) | |
download | stable-diffusion-webui-gfx803-8ffc07b7b1293868a4a3318a87d8de1e0b1cb7ba.tar.gz stable-diffusion-webui-gfx803-8ffc07b7b1293868a4a3318a87d8de1e0b1cb7ba.tar.bz2 stable-diffusion-webui-gfx803-8ffc07b7b1293868a4a3318a87d8de1e0b1cb7ba.zip |
one change didn't make it into the previous commit
-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 bad539d8..35d80d3d 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -333,7 +333,7 @@ def create_toprow(is_img2img): with gr.Row(elem_id="toprow"):
with gr.Column(scale=4):
with gr.Row():
- with gr.Column(scale=8):
+ with gr.Column(scale=80):
with gr.Row():
prompt = gr.Textbox(label="Prompt", elem_id="prompt", show_label=False, placeholder="Prompt", lines=2)
roll = gr.Button('Roll', elem_id="roll", visible=len(shared.artist_db.artists) > 0)
|