Spelling error and case fixes. Everything seems to work so far.

This commit is contained in:
Storm Dragon
2025-12-19 03:46:18 -05:00
parent 7a17b36d50
commit efeb040f75
19 changed files with 177 additions and 131 deletions

View File

@@ -23,11 +23,11 @@ class command:
def run(self):
if (
self.env["input"]["oldCapsLock"]
== self.env["input"]["newCapsLock"]
self.env["input"]["old_caps_lock"]
== self.env["input"]["new_caps_lock"]
):
return
if self.env["input"]["newCapsLock"]:
if self.env["input"]["new_caps_lock"]:
self.env["runtime"]["OutputManager"].present_text(
_("Capslock on"), interrupt=True
)