diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-01-21 20:40:13 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-01-21 21:02:51 +0000 |
commit | 78f59a4e014d090bce7df3b218bfbcd7f11e0894 (patch) | |
tree | 093fbf72f28c3e3998955b5537b483b66bbccdce /modules/ui.py | |
parent | 216f67ec7cdec45bcfa9db40aa6bcac480e3637e (diff) | |
download | stable-diffusion-webui-gfx803-78f59a4e014d090bce7df3b218bfbcd7f11e0894.tar.gz stable-diffusion-webui-gfx803-78f59a4e014d090bce7df3b218bfbcd7f11e0894.tar.bz2 stable-diffusion-webui-gfx803-78f59a4e014d090bce7df3b218bfbcd7f11e0894.zip |
enable compact view for train tab
prevent previews from ruining hypernetwork training
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 daebbc9f..af6dfb21 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -1259,7 +1259,7 @@ def create_ui(): with gr.Row().style(equal_height=False):
gr.HTML(value="<p style='margin-bottom: 0.7em'>See <b><a href=\"https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Textual-Inversion\">wiki</a></b> for detailed explanation.</p>")
- with gr.Row().style(equal_height=False):
+ with gr.Row(variant="compact").style(equal_height=False):
with gr.Tabs(elem_id="train_tabs"):
with gr.Tab(label="Create embedding"):
|