Skip to content

Commit

Permalink
Fix the arrow keys
Browse files Browse the repository at this point in the history
fix issue #93
  • Loading branch information
RoanH committed Jun 1, 2018
1 parent 33717b3 commit cedfe90
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions KeysPerSecond/src/me/roan/kps/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -2066,15 +2066,15 @@ public static String getKeyText(int keyCode) {
return "\u2193";
// Begin Cursor Key Zone
case NativeKeyEvent.VC_UP:
return "\u25B2";
return "\u2BC5";
case NativeKeyEvent.VC_LEFT:
return "\u25B0";
return "\u2BC7";
case NativeKeyEvent.VC_CLEAR:
return "Clr";
case NativeKeyEvent.VC_RIGHT:
return "\u25B6";
return "\u2BC8";
case NativeKeyEvent.VC_DOWN:
return "\u25BC";
return "\u2BC6";
// Begin Modifier and Control Keys
case NativeKeyEvent.VC_SHIFT:
return "\u21D1";
Expand Down

0 comments on commit cedfe90

Please sign in to comment.