From 6414a6ffcb9460b69fd67da4db4f900736436f80 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Wed, 18 Jan 2012 22:51:37 +0000 Subject: [PATCH] Add the Ctrl/Alt/Shift-Left/Right hotkeys to the subtitle grid Originally committed to SVN as r6312. --- aegisub/src/libresrc/default_hotkey.json | 36 ++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/aegisub/src/libresrc/default_hotkey.json b/aegisub/src/libresrc/default_hotkey.json index 89c7502cf..b3d400a1f 100644 --- a/aegisub/src/libresrc/default_hotkey.json +++ b/aegisub/src/libresrc/default_hotkey.json @@ -537,11 +537,47 @@ "key" : "Right" } ], + "video/frame/next/boundary" : [ + { + "modifiers" : [ "Ctrl" ], + "key" : "Right" + } + ], + "video/frame/next/keyframe" : [ + { + "modifiers" : [ "Shift" ], + "key" : "Right" + } + ], + "video/frame/next/large" : [ + { + "modifiers" : [ "Alt" ], + "key" : "Right" + } + ], "video/frame/prev" : [ { "modifiers" : [], "key" : "Left" } + ], + "video/frame/prev/boundary" : [ + { + "modifiers" : [ "Ctrl" ], + "key" : "Left" + } + ], + "video/frame/prev/keyframe" : [ + { + "modifiers" : [ "Shift" ], + "key" : "Left" + } + ], + "video/frame/prev/large" : [ + { + "modifiers" : [ "Alt" ], + "key" : "Left" + } ] },