Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 5bb6293

Browse files
committed
[[ Bug 20706 ]] Fix Ctrl | Cmd + left in SE
This patch fixes a copy/paste error for the Ctrl | Cmd + left keyboard shortcut handling in the script editor.
1 parent f82430b commit 5bb6293

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

Toolset/palettes/script editor/behaviors/revsecommoneditorbehavior.livecodescript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2374,7 +2374,7 @@ on rawKeyDown pKey
23742374
end if
23752375
else
23762376
# For Mac: Ctrl-Left / Cmd-Left / Ctrl-A (Mac)
2377-
if (pKey is kKeyUpArrow and \
2377+
if (pKey is kKeyLeftArrow and \
23782378
(the eventCommandKey is down or \
23792379
the eventControlKey is down) and \
23802380
the eventShiftKey is up and \

notes/bugfix-20706.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Ensure Ctrl | Cmd + left arrow moves cursor to beginning of line

0 commit comments

Comments
 (0)