aboutsummaryrefslogtreecommitdiffstats
path: root/modules/shared.py
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2023-07-08 13:12:01 +0000
committerGitHub <noreply@github.com>2023-07-08 13:12:01 +0000
commit12a29a677ac20a726ce10d84631c224519ab9bc9 (patch)
tree68ef1026565d1e26c746f90d2f20291451951751 /modules/shared.py
parent274a3e21babe5fa913b4a34d49b5d7cd72c5fa89 (diff)
parent6645f23c4c715b1bc704c88a499b2f4224d7f1e6 (diff)
downloadstable-diffusion-webui-gfx803-12a29a677ac20a726ce10d84631c224519ab9bc9.tar.gz
stable-diffusion-webui-gfx803-12a29a677ac20a726ce10d84631c224519ab9bc9.tar.bz2
stable-diffusion-webui-gfx803-12a29a677ac20a726ce10d84631c224519ab9bc9.zip
Merge pull request #10650 from missionfloyd/reorder-hotkeys
Hotkeys to move prompt elements
Diffstat (limited to 'modules/shared.py')
-rw-r--r--modules/shared.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/shared.py b/modules/shared.py
index 5c92141c..b9c53875 100644
--- a/modules/shared.py
+++ b/modules/shared.py
@@ -494,6 +494,7 @@ options_templates.update(options_section(('ui', "User interface"), {
"keyedit_precision_attention": OptionInfo(0.1, "Ctrl+up/down precision when editing (attention:1.1)", gr.Slider, {"minimum": 0.01, "maximum": 0.2, "step": 0.001}),
"keyedit_precision_extra": OptionInfo(0.05, "Ctrl+up/down precision when editing <extra networks:0.9>", gr.Slider, {"minimum": 0.01, "maximum": 0.2, "step": 0.001}),
"keyedit_delimiters": OptionInfo(".,\\/!?%^*;:{}=`~()", "Ctrl+up/down word delimiters"),
+ "keyedit_move": OptionInfo(False, "Ctrl+left/right moves prompt elements"),
"quicksettings_list": OptionInfo(["sd_model_checkpoint"], "Quicksettings list", ui_components.DropdownMulti, lambda: {"choices": list(opts.data_labels.keys())}).js("info", "settingsHintsShowQuicksettings").info("setting entries that appear at the top of page rather than in settings tab").needs_restart(),
"ui_tab_order": OptionInfo([], "UI tab order", ui_components.DropdownMulti, lambda: {"choices": list(tab_names)}).needs_restart(),
"hidden_tabs": OptionInfo([], "Hidden UI tabs", ui_components.DropdownMulti, lambda: {"choices": list(tab_names)}).needs_restart(),