1
0
mirror of https://github.com/odrling/Aegisub synced 2025-04-11 22:56:02 +02:00

Fix a few errors in the default hotkeys

Originally committed to SVN as r5220.
This commit is contained in:
Thomas Goyne 2011-01-16 08:49:53 +00:00
parent 8c8b149236
commit a2af06f302

@ -83,7 +83,7 @@
"Default" : {
"app/exit" : [
{
"modifiers" : [ "C" ],
"modifiers" : [ "Ctrl" ],
"key" : "Q",
"enable" : true
}
@ -245,29 +245,29 @@
],
"edit/redo" : [
{
"modifiers" : [ "Ctrl", "Shift" ],
"key" : "V",
"modifiers" : [ "Ctrl" ],
"key" : "Y",
"enable" : true
}
],
"edit/undo" : [
{
"modifiers" : [ "Ctrl" ],
"key" : "Y",
"key" : "Z",
"enable" : true
}
],
"grid/line/next" : [
{
"modifiers" : [ "Ctrl" ],
"key" : "KP_8",
"key" : "KP_2",
"enable" : true
}
],
"grid/line/prev" : [
{
"modifiers" : [ "Ctrl" ],
"key" : "KP_2",
"key" : "KP_8",
"enable" : true
}
],