diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-12-14 06:48:36 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-12-14 07:14:54 +0000 |
commit | 5cb1ce470df8332872af3dfa1067b761062d4608 (patch) | |
tree | cfdefa0ea0dbfc1334a49401421dd6e1237647d6 /modules/shared_options.py | |
parent | 888b928f0da7da4a2dfa4519e95ac17a3e5562f7 (diff) | |
download | stable-diffusion-webui-gfx803-5cb1ce470df8332872af3dfa1067b761062d4608.tar.gz stable-diffusion-webui-gfx803-5cb1ce470df8332872af3dfa1067b761062d4608.tar.bz2 stable-diffusion-webui-gfx803-5cb1ce470df8332872af3dfa1067b761062d4608.zip |
Merge pull request #14266 from kaalibro/dev
Re-add setting lost as part of e294e46
Diffstat (limited to 'modules/shared_options.py')
-rw-r--r-- | modules/shared_options.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/shared_options.py b/modules/shared_options.py index e5de0d01..acb6e2d4 100644 --- a/modules/shared_options.py +++ b/modules/shared_options.py @@ -256,6 +256,7 @@ options_templates.update(options_section(('ui_prompt_editing', "Prompt editing", "keyedit_precision_extra": OptionInfo(0.05, "Precision for <extra networks:0.9> when editing the prompt with Ctrl+up/down", gr.Slider, {"minimum": 0.01, "maximum": 0.2, "step": 0.001}),
"keyedit_delimiters": OptionInfo(r".,\/!?%^*;:{}=`~() ", "Word delimiters when editing the prompt with Ctrl+up/down"),
"keyedit_delimiters_whitespace": OptionInfo(["Tab", "Carriage Return", "Line Feed"], "Ctrl+up/down whitespace delimiters", gr.CheckboxGroup, lambda: {"choices": ["Tab", "Carriage Return", "Line Feed"]}),
+ "keyedit_move": OptionInfo(True, "Alt+left/right moves prompt elements"),
"disable_token_counters": OptionInfo(False, "Disable prompt token counters").needs_reload_ui(),
}))
|