diff options
| author | Curtis McEnroe | 2018-08-12 21:38:25 -0400 | 
|---|---|---|
| committer | Curtis McEnroe | 2018-08-12 21:38:25 -0400 | 
| commit | a09df5f69729dcdddf413f3a47e3c0c9d7b239eb (patch) | |
| tree | e046278ccb40253d42ed6358318421bfcbdf3da8 | |
| parent | 2ec109e246dc4e654dd8f65637310a34f121526d (diff) | |
Avoid setting mark if switching to the same view
| -rw-r--r-- | ui.c | 2 | 
1 files changed, 1 insertions, 1 deletions
@@ -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;  }  | 
