aboutsummaryrefslogtreecommitdiff
path: root/extensions-builtin/canvas-zoom-and-pan/scripts/hotkey_config.py
diff options
context:
space:
mode:
authorWebDev <6970043+WebDev9000@users.noreply.github.com>2024-01-19 16:39:07 -0800
committerGitHub <noreply@github.com>2024-01-19 16:39:07 -0800
commitbcdcc8be7d5fb923d64b7eb8a9a831f26f179d97 (patch)
tree16b43df37a79eff88f7809f684037b7f7ee7f714 /extensions-builtin/canvas-zoom-and-pan/scripts/hotkey_config.py
parent4dde96109bb9621bb5608f7f792dc569d692ecf5 (diff)
Update hotkey_config.py
Diffstat (limited to 'extensions-builtin/canvas-zoom-and-pan/scripts/hotkey_config.py')
-rw-r--r--extensions-builtin/canvas-zoom-and-pan/scripts/hotkey_config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions-builtin/canvas-zoom-and-pan/scripts/hotkey_config.py b/extensions-builtin/canvas-zoom-and-pan/scripts/hotkey_config.py
index 9d9accce..6d9e34d8 100644
--- a/extensions-builtin/canvas-zoom-and-pan/scripts/hotkey_config.py
+++ b/extensions-builtin/canvas-zoom-and-pan/scripts/hotkey_config.py
@@ -4,8 +4,8 @@ from modules import shared
shared.options_templates.update(shared.options_section(('canvas_hotkey', "Canvas Hotkeys"), {
"canvas_hotkey_zoom": shared.OptionInfo("Alt", "Zoom canvas", gr.Radio, {"choices": ["Shift","Ctrl", "Alt"]}).info("If you choose 'Shift' you cannot scroll horizontally, 'Alt' can cause a little trouble in firefox"),
"canvas_hotkey_adjust": shared.OptionInfo("Ctrl", "Adjust brush size", gr.Radio, {"choices": ["Shift","Ctrl", "Alt"]}).info("If you choose 'Shift' you cannot scroll horizontally, 'Alt' can cause a little trouble in firefox"),
- "canvas_hotkey_shrink_brush": shared.OptionInfo("[", "Shrink the brush size"),
- "canvas_hotkey_grow_brush": shared.OptionInfo("]", "Enlarge the brush size"),
+ "canvas_hotkey_shrink_brush": shared.OptionInfo("Q", "Shrink the brush size"),
+ "canvas_hotkey_grow_brush": shared.OptionInfo("W", "Enlarge the brush size"),
"canvas_hotkey_move": shared.OptionInfo("F", "Moving the canvas").info("To work correctly in firefox, turn off 'Automatically search the page text when typing' in the browser settings"),
"canvas_hotkey_fullscreen": shared.OptionInfo("S", "Fullscreen Mode, maximizes the picture so that it fits into the screen and stretches it to its full width "),
"canvas_hotkey_reset": shared.OptionInfo("R", "Reset zoom and canvas positon"),