Blame SOURCES/0001-Fix-TUI-not-responding-on-quit.patch

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