fix for other distros for backspace
This commit is contained in:
parent
69a2dd92c5
commit
9bc1949711
2 changed files with 2 additions and 2 deletions
|
@ -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):
|
||||
|
|
2
setup.py
2
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",
|
||||
|
|
Loading…
Reference in a new issue