From 9bc1949711091ad1c4b79e18bf1be0ba172558bb Mon Sep 17 00:00:00 2001 From: Doman Date: Tue, 5 Oct 2021 13:20:29 +0200 Subject: [PATCH] fix for other distros for backspace --- fasttyper/listener.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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",