summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-08-12 21:38:25 -0400
committerJune McEnroe <june@causal.agency>2018-08-12 21:38:25 -0400
commita09df5f69729dcdddf413f3a47e3c0c9d7b239eb (patch)
treee046278ccb40253d42ed6358318421bfcbdf3da8
parentDisable focus tracking in uiHide (diff)
downloadcatgirl-a09df5f69729dcdddf413f3a47e3c0c9d7b239eb.tar.gz
catgirl-a09df5f69729dcdddf413f3a47e3c0c9d7b239eb.zip
Avoid setting mark if switching to the same view
-rw-r--r--ui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui.c b/ui.c
index 9f198c4..559f7b7 100644
--- a/ui.c
+++ b/ui.c
@@ -210,8 +210,8 @@ static void uiRedraw(void) {
 static void uiView(struct View *view) {
 	if (view->topic) touchwin(view->topic);
 	touchwin(view->log);
-	view->mark = false;
 	ui.view->mark = true;
+	view->mark = false;
 	ui.view = view;
 }