Skip to content

Commit

Permalink
change hotkey <ctrl-r> to <r>
Browse files Browse the repository at this point in the history
  • Loading branch information
Pr0gm4n committed May 30, 2015
1 parent 4ed2f5c commit 0fe4704
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.as
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
if (e.keyCode == 32) { // <SPACE>
clickGoButton();
}
if (e.keyCode == 116 || (e.ctrlKey && e.keyCode == 82)) { // <F5> or <Ctrl-r>
if (e.keyCode == 116 || e.keyCode == 82) { // <F5> or <r>
reset();
}
});
Expand Down Expand Up @@ -470,4 +470,4 @@
t.start();
}
}
}
}

0 comments on commit 0fe4704

Please sign in to comment.