explicitly color selector white when dim unselected is true.

This commit is contained in:
tjex 2025-01-27 19:11:38 +01:00
parent cae07bae16
commit 8795517790

View file

@ -1231,6 +1231,9 @@ impl TaskwarriorTui {
if self.config.uda_selection_reverse {
highlight_style = highlight_style.add_modifier(Modifier::REVERSED);
}
if self.config.uda_unselected_dim {
highlight_style = highlight_style.fg(Color::White);
}
}
rows.push(Row::StyledData(task.iter(), style));
}