Skip to content

Commit 1265cd6

Browse files
SPuntteeldruin
authored andcommitted
Simplify fallback match arm
1 parent b8cabf6 commit 1265cd6

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/layouts/fi_se105.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -220,10 +220,7 @@ impl KeyboardLayout for FiSe105Key {
220220
fallback.map_keycode(keycode, modifiers, handle_ctrl)
221221
}
222222
}
223-
e => {
224-
let us = super::Us104Key;
225-
us.map_keycode(e, modifiers, handle_ctrl)
226-
}
223+
e => fallback.map_keycode(e, modifiers, handle_ctrl),
227224
}
228225
}
229226
}

0 commit comments

Comments
 (0)