about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ui.c20
1 files changed, 13 insertions, 7 deletions
diff --git a/ui.c b/ui.c
index 72ff0f4..9f198c4 100644
--- a/ui.c
+++ b/ui.c
@@ -131,6 +131,17 @@ static struct View *viewTag(struct Tag tag) {
 	return view;
 }
 
+void uiHide(void) {
+	ui.hide = true;
+	termMode(TERM_FOCUS, false);
+	endwin();
+}
+
+static void uiShow(void) {
+	ui.hide = false;
+	termMode(TERM_FOCUS, true);
+}
+
 void uiInit(void) {
 	setlocale(LC_CTYPE, "");
 	initscr();
@@ -138,7 +149,6 @@ void uiInit(void) {
 	noecho();
 
 	colorInit();
-	termMode(TERM_FOCUS, true);
 
 	ui.input = newpad(2, INPUT_COLS);
 	mvwhline(ui.input, 0, 0, ACS_HLINE, INPUT_COLS);
@@ -147,16 +157,12 @@ void uiInit(void) {
 	nodelay(ui.input, true);
 
 	ui.view = viewTag(TAG_STATUS);
-}
 
-void uiHide(void) {
-	ui.hide = true;
-	endwin();
+	uiShow();
 }
 
 void uiExit(void) {
 	uiHide();
-	termMode(TERM_FOCUS, false);
 	printf(
 		"This program is AGPLv3 free software!\n"
 		"The source is available at <" SOURCE_URL ">.\n"
@@ -461,7 +467,7 @@ static bool keyCode(wchar_t ch) {
 }
 
 void uiRead(void) {
-	ui.hide = false;
+	uiShow();
 
 	bool update = false;
 	int ret;
modeJune McEnroe 2018-09-27Export PWDJune McEnroe 2018-09-27Add sans6x8 PSF2 fontJune McEnroe 2018-09-26Add copy paste to psfedJune McEnroe 2018-09-25Add r to psfed for invertJune McEnroe 2018-09-24Add psfed, a PSF2 font editorJune McEnroe 2018-09-21Add scheme -i to swap white and blackJune McEnroe 2018-09-21Map caps lock to escape on Linux consoleJune McEnroe 2018-09-19Fix README mandoc lintsJune McEnroe 2018-09-19Un-NOT trans.alpha values in pngoJune McEnroe 2018-09-18Refactor reads in pngo and clear palette between filesJune McEnroe 2018-09-17Add tRNS support to pngoJune McEnroe 2018-09-11Move gfx man pages to gfx/manJune McEnroe 2018-09-11Move bin man pages to bin/manJune McEnroe 2018-09-11Rewrite gfx.7 and render plaintext READMEJune McEnroe 2018-09-11Remove GAMES from BINSJune McEnroe 2018-09-11Rewrite bin.7 and render to plaintext READMEJune McEnroe 2018-09-11Add "blank" lines to man pagesJune McEnroe 2018-09-10Add mdoc syntax fileJune McEnroe 2018-09-08Fix Nm usage in multi-name man pagesJune McEnroe 2018-09-08Put real dates on man pagesJune McEnroe 2018-09-08Replace gfx README with REAMDE.7June McEnroe 2018-09-08Link gfx man pages in ~/.localJune McEnroe