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
1 changed files with 6 additions and 6 deletions

View File

@ -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
}
],