Remove 'would be better to write own interface' because now i did

This commit is contained in:
mlncn 2021-05-02 16:41:23 -04:00
parent 41a5cd0a1d
commit 270c999b83

View file

@ -20,11 +20,8 @@ def pomodoro_prompt_plan(whatdid = ''):
""" Ask about what task will be worked on (showing last thing worked on)
"""
text = "What're you gonna do?"
# Instead of repeating this, i'd prefer a clean interface with the ability to get back
# the placeholder text with 'esc' or up arrow or something. But i'm not up for building
# my own interface, so here's what we get. NOTE: If we can do system notifications that
# when clicked will focus the terminal running pomodoro prompt, that would be even better
# than these pop-up GUI notifications/text entry.
# NOTE: If we can do system notifications that when clicked will focus the terminal
# running pomodoro prompt, that might be even better than the pop-up GUI text entry.
whatnext = prompt_window.prompt(prompt=text, task=whatdid)
# Pressing cancel returns None, but we want to just treat it as an empty string.
if whatnext is None: