summary refs log tree commit diff
path: root/ui.c
diff options
context:
space:
mode:
authorCurtis McEnroe2018-08-12 21:38:25 -0400
committerCurtis McEnroe2018-08-12 21:38:25 -0400
commita09df5f69729dcdddf413f3a47e3c0c9d7b239eb (patch)
treee046278ccb40253d42ed6358318421bfcbdf3da8 /ui.c
parent2ec109e246dc4e654dd8f65637310a34f121526d (diff)
Avoid setting mark if switching to the same view
Diffstat (limited to 'ui.c')
-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;
 }