about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-01-31 15:33:41 -0500
committerJune McEnroe <june@causal.agency>2021-01-31 15:33:41 -0500
commit32bf43660fabe2478cd3d5e7993e7cc4fbb3e3eb (patch)
tree28b5ef49a1122c837b788d2f33d636d0b506aec6
parentActually scroll to first line for "scroll to top" (diff)
downloadcatgirl-32bf43660fabe2478cd3d5e7993e7cc4fbb3e3eb.tar.gz
catgirl-32bf43660fabe2478cd3d5e7993e7cc4fbb3e3eb.zip
Also skip marking swap window
Third time's the charm?
-rw-r--r--ui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui.c b/ui.c
index f44073a..e75e0eb 100644
--- a/ui.c
+++ b/ui.c
@@ -772,10 +772,10 @@ static void inputUpdate(void) {
 static void windowShow(uint num) {
 	if (num != windows.show) {
 		windows.swap = windows.show;
+		mark(windows.ptrs[windows.swap]);
 	}
 	windows.show = num;
 	windows.user = num;
-	mark(windows.ptrs[windows.swap]);
 	unmark(windows.ptrs[windows.show]);
 	mainUpdate();
 	inputUpdate();