Do not highlight items on inactive windows
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
This commit is contained in:
parent
cac973fee3
commit
e33f53aad5
@ -842,6 +842,8 @@ void ui_day_draw(int n, WINDOW *win, int y, int hilt, void *cb_data)
|
||||
struct day_item *item = day_get_item(n);
|
||||
int width = lb_apt.sw.w;
|
||||
|
||||
hilt = hilt && (wins_slctd() == APP);
|
||||
|
||||
if (item->type == EVNT || item->type == RECUR_EVNT) {
|
||||
day_display_item(item, win, !hilt, width, y, 1);
|
||||
} else if (item->type == APPT || item->type == RECUR_APPT) {
|
||||
|
@ -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);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user