Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix hw keyboard number input for number fields #2

Open
wants to merge 2 commits into
base: cm-12.1
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 12 additions & 11 deletions rootdir/system/usr/keychars/pm8xxx-keypad.kcm
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Original idea by Paul-xxx
# Made by KrSH - Danish version by hnl_dk
# Number-entry bugfix by fred777
# Xperia Mini Pro keyboard character map based on qwerty.kcm

type ALPHA
Expand Down Expand Up @@ -132,7 +133,7 @@ key N {

key O {
label: 'O'
number: '6'
number: '9'
base: 'o'
shift, capslock: 'O'
alt: '9'
Expand All @@ -141,7 +142,7 @@ key O {

key P {
label: 'P'
number: '7'
number: '0'
base: 'p'
shift, capslock: 'P'
alt: '0'
Expand All @@ -150,7 +151,7 @@ key P {

key Q {
label: 'Q'
number: '7'
number: '1'
base: 'q'
shift, capslock: 'Q'
alt: '1'
Expand All @@ -159,7 +160,7 @@ key Q {

key R {
label: 'R'
number: '7'
number: '4'
base: 'r'
shift, capslock: 'R'
alt: '4'
Expand All @@ -171,13 +172,13 @@ key S {
number: '7'
base: 's'
shift, capslock: 'S'
alt: ':'
alt: '.'
shift+alt, capslock+alt: '\u00df'
}

key T {
label: 'T'
number: '8'
number: '5'
base: 't'
shift, capslock: 'T'
alt: '5'
Expand All @@ -186,7 +187,7 @@ key T {

key U {
label: 'U'
number: '8'
number: '7'
base: 'u'
shift, capslock: 'U'
alt: '7'
Expand All @@ -204,7 +205,7 @@ key V {

key W {
label: 'W'
number: '9'
number: '2'
base: 'w'
shift, capslock: 'W'
alt: '2'
Expand All @@ -222,7 +223,7 @@ key X {

key Y {
label: 'Y'
number: '9'
number: '6'
base: 'y'
shift, capslock: 'Y'
alt: '6'
Expand All @@ -231,10 +232,10 @@ key Y {

key Z {
label: 'Z'
number: '9'
number: '6'
base: 'z'
shift, capslock: 'Z'
alt: 'z'
alt: '6'
shift+alt, capslock+alt: none
}

Expand Down