Revert "Monocolor LED backlight added"

This commit is contained in:
Josh Klar
2019-07-07 15:35:15 -07:00
committed by GitHub
parent 7bff667a2b
commit 5b069a0104
52 changed files with 211 additions and 1797 deletions

View File

@@ -171,7 +171,8 @@ class InternalState:
return self
if (
changed_key not in self.tap_dance_counts or not self.tap_dance_counts[changed_key]
changed_key not in self.tap_dance_counts or
not self.tap_dance_counts[changed_key]
):
self.tap_dance_counts[changed_key] = 1
self.set_timeout(self.config.tap_time, lambda: self._end_tap_dance(changed_key))
@@ -256,7 +257,8 @@ class InternalState:
for key in keys_pressed:
if (
self.config.leader_mode == LeaderMode.ENTER_ACTIVE and key == KC.ENT
self.config.leader_mode == LeaderMode.ENTER_ACTIVE and
key == KC.ENT
):
self._handle_leader_sequence()
break