From 94423edf9662e15af7e6b1e146bc3e688c7cd538 Mon Sep 17 00:00:00 2001 From: Kairui Song Date: Mon, 13 Jul 2020 18:50:28 +0800 Subject: [PATCH] Fix TUI not responding on quit --- src/tui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tui.c b/src/tui.c index a84fe74..726e729 100644 --- a/src/tui.c +++ b/src/tui.c @@ -340,7 +340,7 @@ void tui_loop(void) { case 'q': case 'Q': endwin(); - /// m_exit(0); + m_exit(0); return; case 'm': -- 2.26.2