about summary refs log tree commit diff
path: root/ui.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-02-09 00:39:09 -0500
committerJune McEnroe <june@causal.agency>2020-02-09 00:39:09 -0500
commite0714a9b7e88bc2de9ec4b4c0d0a74dc3012b847 (patch)
treecc783f634175cb87bb8c5f74b25448b1cb1de5c0 /ui.c
parentUse fmemopen to build colored mentions string (diff)
downloadcatgirl-e0714a9b7e88bc2de9ec4b4c0d0a74dc3012b847.tar.gz
catgirl-e0714a9b7e88bc2de9ec4b4c0d0a74dc3012b847.zip
Switch to "other" window if closing active window
Diffstat (limited to 'ui.c')
-rw-r--r--ui.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/ui.c b/ui.c
index 29062be..23bf929 100644
--- a/ui.c
+++ b/ui.c
@@ -578,7 +578,11 @@ void uiShowNum(size_t num) {
 static void windowClose(struct Window *window) {
 	if (window->id == Network) return;
 	if (windows.active == window) {
-		windowShow(window->prev ? window->prev : window->next);
+		if (windows.other && windows.other != window) {
+			windowShow(windows.other);
+		} else {
+			windowShow(window->prev ? window->prev : window->next);
+		}
 	}
 	if (windows.other == window) windows.other = NULL;
 	windowRemove(window);
9fd67d9b6a55a0308d00ceb&follow=1'>Add Normal PeopleJune McEnroe 2022-07-26Rewrite glitch from new pngoJune McEnroe 2022-07-26Update Care with time-to-ID and piercingsJune McEnroe 2022-07-26Add -w to upJune McEnroe 2022-07-13Set push.autoSetupRemoteJune McEnroe 2022-07-08Remove TOURJune McEnroe 2022-07-03Add The Bone Shard EmperorJune McEnroe 2022-06-25Bump xterm font size to 12June McEnroe 2022-06-10Handle subshells (and functions) inside substitutionsJune McEnroe 2022-06-10Switch to jorts Install scriptJune McEnroe 2022-06-08Indicate if still reading or no resultsJune McEnroe 2022-06-08Add Maiden, Mother, CroneJune McEnroe 2022-06-05FIRST SHOW IN 2.5 YEARS BABEY!!!June McEnroe 2022-06-03Set line number on File linesJune McEnroe 2022-06-03Stop polling stdin after EOFJune McEnroe 2022-06-02Set TABSIZE=4June McEnroe 2022-06-02Do basic match highlightingJune McEnroe 2022-06-02Clean up parsing a littleJune McEnroe 2022-06-02Don't duplicate path stringJune McEnroe 2022-06-02Use stderr instead of /dev/tty, realloc buffer if lines too longJune McEnroe 2022-06-02Add initial working version of qfJune McEnroe 2022-05-29Set prompt for okshJune McEnroe