diff options
author | Sébastien Dailly <sebastien@dailly.me> | 2025-04-26 09:34:47 +0200 |
---|---|---|
committer | Sébastien Dailly <sebastien@dailly.me> | 2025-04-28 17:27:50 +0200 |
commit | 50d040446ed1a1211c0f1ddc6a64438cc5b49c02 (patch) | |
tree | 42be8b17ca1ccc86aae56b45aef7c4b6e4fb4c30 /macropad.pyw | |
parent | 5977071580763398eb215baea91a9bf4c50533c0 (diff) |
Diffstat (limited to 'macropad.pyw')
-rwxr-xr-x | macropad.pyw | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/macropad.pyw b/macropad.pyw index 87dfd40..3a3b7e2 100755 --- a/macropad.pyw +++ b/macropad.pyw @@ -186,6 +186,9 @@ class Application(object): except Exception as e: print(e) + """ Send the message to the endpoint. + If the content is the same, ignore the message and return. + """ def send(self, data: str): if data == self.last_layout: return |