Skip to content

Commit

Permalink
Fix mistakes and bugs after review
Browse files Browse the repository at this point in the history
thanks @CrossR

Co-authored-by: Ryan C <[email protected]>
  • Loading branch information
okke-formsma and CrossR authored Sep 10, 2020
1 parent ecb4249 commit 7cb30ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/dts/behaviors/modifiers.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
label = "MOD_GUI";
usage_page = <USAGE_KEYPAD>;
#binding-cells = <1>;
modifiers = <(LALT)>;
modifiers = <(LGUI)>;
};


Expand All @@ -48,7 +48,7 @@
label = "RSFT";
usage_page = <USAGE_KEYPAD>;
#binding-cells = <1>;
modifiers = <(RALT)>;
modifiers = <(RSFT)>;
};

ralt: behavior_ralt {
Expand Down
2 changes: 1 addition & 1 deletion app/src/hid.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ int zmk_hid_keypad_press(zmk_key code)
{
zmk_mod_flags mods = SELECT_MODS(code);
if (mods) {
return zmk_hid_register_mods(mods);
zmk_hid_register_mods(mods);
}
code = STRIP_MODS(code);

Expand Down

0 comments on commit 7cb30ca

Please sign in to comment.