Hermes Bot commited on
Commit ·
b178bbd
1
Parent(s): a89f186
Increase metadata textbox lines to 20 to match gallery height
Browse files- ui/layout.py +1 -1
ui/layout.py
CHANGED
|
@@ -107,7 +107,7 @@ def build_ui(event_handler_function):
|
|
| 107 |
ui_components["gallery"] = gallery
|
| 108 |
# Right side: Metadata textbox + drag‑and‑drop (smaller column)
|
| 109 |
with gr.Column(scale=1):
|
| 110 |
-
metadata_box = gr.Textbox(label="Generation info", lines=
|
| 111 |
ui_components["gallery_metadata"] = metadata_box
|
| 112 |
info_upload = gr.File(label="Drag image here for info", file_count="single", type="filepath", interactive=True)
|
| 113 |
ui_components["info_upload"] = info_upload
|
|
|
|
| 107 |
ui_components["gallery"] = gallery
|
| 108 |
# Right side: Metadata textbox + drag‑and‑drop (smaller column)
|
| 109 |
with gr.Column(scale=1):
|
| 110 |
+
metadata_box = gr.Textbox(label="Generation info", lines=20, interactive=False)
|
| 111 |
ui_components["gallery_metadata"] = metadata_box
|
| 112 |
info_upload = gr.File(label="Drag image here for info", file_count="single", type="filepath", interactive=True)
|
| 113 |
ui_components["info_upload"] = info_upload
|