diff options
Diffstat (limited to 'src/ui-todo.c')
-rw-r--r-- | src/ui-todo.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ui-todo.c b/src/ui-todo.c index 49cf371..900bbfe 100644 --- a/src/ui-todo.c +++ b/src/ui-todo.c @@ -153,6 +153,8 @@ void ui_todo_draw(int n, WINDOW *win, int y, int hilt, void *cb_data) mark[0] = todo->id > 0 ? '0' + todo->id : 'X'; mark[1] = todo->note ? '>' : '.'; + hilt = hilt && (wins_slctd() == TOD); + if (hilt) custom_apply_attr(win, ATTR_HIGHEST); |