diff options
author | June McEnroe <june@causal.agency> | 2020-02-11 18:18:48 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-02-11 18:18:48 -0500 |
commit | 7783d89448293030aae4cc678e567a70e130c054 (patch) | |
tree | fc641d7d762e25fab50bb1468fb4b4a91bdc2e3a | |
parent | Don't insert color codes for non-mentions (diff) | |
download | catgirl-7783d89448293030aae4cc678e567a70e130c054.tar.gz catgirl-7783d89448293030aae4cc678e567a70e130c054.zip |
Call completeClear when closing a window
Diffstat (limited to '')
-rw-r--r-- | ui.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui.c b/ui.c index 29d5583..e687c08 100644 --- a/ui.c +++ b/ui.c @@ -727,6 +727,7 @@ void uiShowNum(size_t num) { static void windowClose(struct Window *window) { if (window->id == Network) return; + completeClear(window->id); if (windows.active == window) { if (windows.other && windows.other != window) { windowShow(windows.other); |