1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-06-09 04:33:29 -04:00

refactor(niri): Normalize key bindings to be case insensitive within DMS

This commit is contained in:
purian23
2026-05-21 00:38:31 -04:00
parent 37c98220a9
commit 078c9b4890
4 changed files with 102 additions and 14 deletions
@@ -367,7 +367,7 @@ func TestNiriEmptyArgsPreservation(t *testing.T) {
}
for key, expected := range binds {
loaded, ok := loadedBinds[key]
loaded, ok := loadedBinds[normalizeNiriBindKey(key)]
if !ok {
t.Errorf("Missing bind for key %s", key)
continue