mirror of
https://github.com/kdheepak/taskwarrior-tui.git
synced 2025-08-23 11:07:45 +02:00
explicitly color selector white when dim unselected is true.
This commit is contained in:
parent
cae07bae16
commit
8795517790
1 changed files with 3 additions and 0 deletions
|
@ -1231,6 +1231,9 @@ impl TaskwarriorTui {
|
||||||
if self.config.uda_selection_reverse {
|
if self.config.uda_selection_reverse {
|
||||||
highlight_style = highlight_style.add_modifier(Modifier::REVERSED);
|
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));
|
rows.push(Row::StyledData(task.iter(), style));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue