diff --git a/fasttyper/interface.py b/fasttyper/interface.py index a6c2d79..4cb864c 100644 --- a/fasttyper/interface.py +++ b/fasttyper/interface.py @@ -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) diff --git a/setup.cfg b/setup.cfg index d72f28e..898de85 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.1.0 +current_version = 2.1.1 [wheel] universal = 1 diff --git a/setup.py b/setup.py index 794c874..b0c8812 100644 --- a/setup.py +++ b/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",