special handle thumb keys
This commit is contained in:
parent
1177df59a0
commit
ec10618bb9
|
@ -7,6 +7,8 @@
|
|||
|
||||
char chordal_hold_handedness(keypos_t key)
|
||||
{
|
||||
// special handle thumb keys
|
||||
if (key.row == 3 || key.row == 7) return '*';
|
||||
return (key.row < MATRIX_ROWS / 2) ? 'L' : 'R';
|
||||
}
|
||||
|
||||
|
|
|
@ -7,6 +7,8 @@
|
|||
|
||||
char chordal_hold_handedness(keypos_t key)
|
||||
{
|
||||
// special handle thumb keys
|
||||
if (key.row == 3 || key.row == 7) return '*';
|
||||
return (key.row < MATRIX_ROWS / 2) ? 'L' : 'R';
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,9 @@
|
|||
|
||||
char chordal_hold_handedness(keypos_t key)
|
||||
{
|
||||
return ((key.row < 3) || (key.row == 3 && key.col < 3) || (key.row == 7 && key.col > 2)) ? 'L' : 'R';
|
||||
// special handle thumb keys
|
||||
if (key.row == 3 || key.row == 7) return '*';
|
||||
return (key.row < MATRIX_ROWS / 2) ? 'L' : 'R';
|
||||
}
|
||||
|
||||
// layout helper macro, we just use 42 keys
|
||||
|
|
Loading…
Reference in a new issue