commit - 6ed9ffec8b7318ac6f69a138854afefc48bca2c0
commit + 9e0b562498af93589bef778858099a8a1a33e252
blob - 7850a8a50fe8ff23c3f0d68ab713639f97d85090
blob + 897b0c14098c0b8440dbdfbedd2bb8c0792e6efb
--- tog/tog.c
+++ tog/tog.c
while (col < avail && author_width < author_display_cols + 2) {
if (tog_base_commit.id != NULL &&
author_width == marker_column &&
- entry->idx == tog_base_commit.idx)
+ entry->idx == tog_base_commit.idx) {
+ tc = get_color(&s->colors, TOG_COLOR_COMMIT);
+ if (tc)
+ wattr_on(view->window,
+ COLOR_PAIR(tc->colorpair), NULL);
waddch(view->window, tog_base_commit.marker);
- else
+ if (tc)
+ wattr_off(view->window,
+ COLOR_PAIR(tc->colorpair), NULL);
+ } else
waddch(view->window, ' ');
col++;
author_width++;