Skip to content
This repository has been archived by the owner on Nov 21, 2020. It is now read-only.

Commit

Permalink
Merge pull request #18 from DanLszl/master
Browse files Browse the repository at this point in the history
Fix indexing issue when converting from 61 keys to 70
  • Loading branch information
kprinssu authored Apr 5, 2017
2 parents ec51d9e + 81db9ef commit 1f95d70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AnneProKeyboard/KeyboardProfileItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public byte[] GenerateKeyboardLayoutData()
if (!(i == 40 || i == 53 || i == 54 || i == 59 || i == 60 || i == 62 || i == 63 || i == 64 || i == 65))
{
standard_converted_keys[i] = standard_keys[j];
fn_converted_keys[j] = fn_keys[j];
fn_converted_keys[i] = fn_keys[j];
j++;
}
}
Expand Down

0 comments on commit 1f95d70

Please sign in to comment.