From b8a27b9605eb708d7844337a121c3a4d05d61343 Mon Sep 17 00:00:00 2001 From: Kyle Brown Date: Mon, 24 Sep 2018 16:39:10 -0700 Subject: [PATCH] Set better keycode values for KC_NO and KC_TRANSPARENT which is an alias to KC_TRNS --- kmk/common/keycodes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kmk/common/keycodes.py b/kmk/common/keycodes.py index f58f060..41552a9 100644 --- a/kmk/common/keycodes.py +++ b/kmk/common/keycodes.py @@ -343,8 +343,8 @@ class Keycodes(KeycodeCategory): KC_RSPC = Keycode(1004) KC_LEAD = Keycode(1005) KC_LOCK = Keycode(1006) - KC_NO = Keycode(1100) - KC_TRNS = Keycode(1101) + KC_NO = Keycode(1107) + KC_TRANSPARENT = KC_TRNS = Keycode(1108) class Layers(KeycodeCategory): _KC_DF = 1050