fix for other distros for backspace

This commit is contained in:
Doman 2021-10-05 13:20:29 +02:00
parent 69a2dd92c5
commit 9bc1949711
2 changed files with 2 additions and 2 deletions

View file

@ -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):

View file

@ -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",