Fix - no cursor after resume
This commit is contained in:
parent
1cdb570112
commit
f102912965
3 changed files with 4 additions and 2 deletions
|
@ -43,6 +43,8 @@ class Interface:
|
|||
|
||||
if self.no_cursor:
|
||||
curses.curs_set(0)
|
||||
else:
|
||||
curses.curs_set(1)
|
||||
|
||||
while self.application.running():
|
||||
self.update(screen)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[bumpversion]
|
||||
current_version = 2.1.0
|
||||
current_version = 2.1.1
|
||||
|
||||
[wheel]
|
||||
universal = 1
|
||||
|
|
2
setup.py
2
setup.py
|
@ -9,7 +9,7 @@ with open("requirements.txt", "r", encoding="utf-8") as fh:
|
|||
|
||||
setup(
|
||||
name="fasttyper",
|
||||
version="2.1.0",
|
||||
version="2.1.1",
|
||||
author="Piotr Domanski",
|
||||
author_email="pi.domanski@gmail.com",
|
||||
description="Minimalistic typing exercise",
|
||||
|
|
Loading…
Reference in a new issue