diff options
| author | historia <[not public]> | 2026-06-11 23:45:35 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-06-11 23:45:35 -0400 |
| commit | 974cced9bd78d60d1454717e7b2e664c7790f04e (patch) | |
| tree | 1e803b61c6f1d689c4c438e95dbad1789b63c51a | |
| parent | 6b559be14142bf89b971159fb969c8e414807b20 (diff) | |
| download | soon-974cced9bd78d60d1454717e7b2e664c7790f04e.tar.gz | |
fix: hide tui cursor on select
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | src/soon/tui.nim | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -3,3 +3,4 @@ soon !/src/soon/ !/tests/*.nim !/tests/*.nims +when.pl diff --git a/src/soon/tui.nim b/src/soon/tui.nim index 1e4d06d..ebbdc29 100644 --- a/src/soon/tui.nim +++ b/src/soon/tui.nim @@ -311,6 +311,7 @@ proc start*(cal: seq[string], conf: StringTableRef, past: int, future: int, showAgenda: bool, showTodos: bool, showDeadlines: bool) = illwillInit(fullScreen=true) + hideCursor() defer: illwillDeinit() stdout.write("\e[2J\e[H") |
