diff --git a/readme.md b/readme.md index ca21c81..57d706c 100644 --- a/readme.md +++ b/readme.md @@ -21,6 +21,7 @@ It gives a neat presentation of all your projects, which you can assign tasks to ### requirements: - python 3.x +- curses (install with `pip install windows-curses`) Download the file from the [releases page](https://github.com/SemvdH/terminal-project-management/releases) and run `python tpm.py` diff --git a/tpm.py b/tpm.py index 76131a7..90971b6 100644 --- a/tpm.py +++ b/tpm.py @@ -281,6 +281,8 @@ def create_task(projects: list,project_index: int, stdscr): window.refresh() + + textpad = Textbox(scr2, insert_mode=True) task_name = textpad.edit() task_name = task_name[:-1]