mirror of
https://github.com/sezanzeb/input-remapper
synced 2024-11-20 03:25:43 +00:00
removed debug prints
This commit is contained in:
parent
501f388fc6
commit
f0bf6f855c
@ -118,7 +118,6 @@ class _Macro:
|
|||||||
def press_key(self):
|
def press_key(self):
|
||||||
"""Tell all child macros that the key was pressed down."""
|
"""Tell all child macros that the key was pressed down."""
|
||||||
# TODO test
|
# TODO test
|
||||||
print(id(self), 'hold')
|
|
||||||
self.holding = True
|
self.holding = True
|
||||||
for macro in self.child_macros:
|
for macro in self.child_macros:
|
||||||
macro.press_key()
|
macro.press_key()
|
||||||
@ -126,7 +125,6 @@ class _Macro:
|
|||||||
def release_key(self):
|
def release_key(self):
|
||||||
"""Tell all child macros that the key was released."""
|
"""Tell all child macros that the key was released."""
|
||||||
# TODO test
|
# TODO test
|
||||||
print(id(self), 'release')
|
|
||||||
self.holding = False
|
self.holding = False
|
||||||
for macro in self.child_macros:
|
for macro in self.child_macros:
|
||||||
macro.release_key()
|
macro.release_key()
|
||||||
|
Loading…
Reference in New Issue
Block a user