Skip to content

Commit

Permalink
Fix default config. Added "minus", "plus", "comma" chars
Browse files Browse the repository at this point in the history
  • Loading branch information
ckesc authored and Sergey Krayushkin committed May 5, 2015
1 parent 887b35b commit f6c3c76
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apply from: 'javafx.plugin'

version = '1.0.3'
version = '1.0.4'

description = "The fastest adb keyboard"

Expand Down
4 changes: 4 additions & 0 deletions src/main/java/ru/ckesc/adbkeyboard/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,10 @@ public static Config createDefaultConfig() {
.addKeyMapItem(KeyCode.NUMPAD8, "KEYCODE_8")
.addKeyMapItem(KeyCode.NUMPAD9, "KEYCODE_9")

.addKeyMapItem(KeyCode.COMMA, "KEYCODE_COMMA")
.addKeyMapItem(KeyCode.MINUS, "KEYCODE_MINUS")
.addKeyMapItem(KeyCode.PLUS, "KEYCODE_PLUS")

.build();

}
Expand Down

0 comments on commit f6c3c76

Please sign in to comment.