about summary refs log tree commit diff stats
path: root/src/windows.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/windows.c')
-rw-r--r--src/windows.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/windows.c b/src/windows.c
index 75154b64..7d92a419 100644
--- a/src/windows.c
+++ b/src/windows.c
@@ -106,7 +106,7 @@ gui_init(void)
 {
     log_info("Initialising UI");
     initscr();
-    cbreak();
+    raw();
     keypad(stdscr, TRUE);
 
     win_load_colours();
@@ -1050,6 +1050,11 @@ cons_prefs(void)
     else
         cons_show("Version checking             : OFF");
 
+    if (prefs_get_ctrlc())
+        cons_show("Ctrl-c quits                 : ON");
+    else
+        cons_show("Ctrl-c quits                 : OFF");
+
     if (prefs_get_notify_message())
         cons_show("Message notifications        : ON");
     else