diff options
author | James Booth <boothj5@gmail.com> | 2012-11-23 02:56:38 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2012-11-23 02:56:38 +0000 |
commit | 7c7e95ea4ecc943d64fe8f77eaec2c43cbc4f94e (patch) | |
tree | 6adad0c647b2366218d9d7bc6a397529e50c3f78 | |
parent | faeea56bb5a500247f85f95f1d39845c7915be7f (diff) | |
download | profani-tty-7c7e95ea4ecc943d64fe8f77eaec2c43cbc4f94e.tar.gz |
Switched to ncurses raw mode
-rw-r--r-- | src/windows.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/windows.c b/src/windows.c index 75154b64..9c52d483 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(); |