diff --git a/fasttyper/listener.py b/fasttyper/listener.py index c5ed4a9..f2ff621 100644 --- a/fasttyper/listener.py +++ b/fasttyper/listener.py @@ -19,7 +19,7 @@ class Listener: action = Action.invalid if key == 263: - action = Action.del_word + action = Action.del_char # TODO elif isinstance(key, int): pass elif key == chr(127): diff --git a/setup.py b/setup.py index e122a55..a5e75bb 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh: setup( name="fasttyper", - version="1.1.0", + version="1.2.0", author="Piotr Domanski", author_email="pi.domanski@gmail.com", description="Minimalistic typing exercise",