aboutsummaryrefslogtreecommitdiff
path: root/modules/shared_options.py
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2023-11-05 19:23:48 +0300
committerAUTOMATIC1111 <16777216c@gmail.com>2023-11-05 19:23:48 +0300
commitc3699d4fd185d5a7285c5519f9bb4b6fec236d9f (patch)
treed52db93abf2fae8e47e8b2277e29c21ae9546cb3 /modules/shared_options.py
parent4d4a9e733219f8c065a4ab6c5ab42836db7330fe (diff)
compact prompt option disabled by default
Diffstat (limited to 'modules/shared_options.py')
-rw-r--r--modules/shared_options.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/shared_options.py b/modules/shared_options.py
index 4e3d7541..a9964fcb 100644
--- a/modules/shared_options.py
+++ b/modules/shared_options.py
@@ -272,7 +272,7 @@ options_templates.update(options_section(('ui', "User interface"), {
"hires_fix_show_sampler": OptionInfo(False, "Hires fix: show hires checkpoint and sampler selection").needs_reload_ui(),
"hires_fix_show_prompts": OptionInfo(False, "Hires fix: show hires prompt and negative prompt").needs_reload_ui(),
"disable_token_counters": OptionInfo(False, "Disable prompt token counters").needs_reload_ui(),
- "compact_prompt_box": OptionInfo(True, "Compact prompt layout").info("puts prompt and negative prompt inside the Generate tab, leaving more vertical space for the image on the right").needs_reload_ui(),
+ "compact_prompt_box": OptionInfo(False, "Compact prompt layout").info("puts prompt and negative prompt inside the Generate tab, leaving more vertical space for the image on the right").needs_reload_ui(),
}))