mirror of
https://github.com/kdheepak/taskwarrior-tui.git
synced 2025-08-23 20:16:41 +02:00
wip implement unselected dim
This commit is contained in:
parent
a4c96f69b1
commit
de02ae4357
1 changed files with 3 additions and 2 deletions
|
@ -1227,8 +1227,9 @@ impl TaskwarriorTui {
|
|||
if self.config.uda_selection_reverse {
|
||||
highlight_style = highlight_style.add_modifier(Modifier::REVERSED);
|
||||
}
|
||||
} else {
|
||||
// act on unselected items
|
||||
}
|
||||
// act on unselected items
|
||||
if i != selected {
|
||||
highlight_style = style.patch(self.config.uda_style_report_unselected);
|
||||
if self.config.uda_unselected_dim {
|
||||
highlight_style = highlight_style.add_modifier(Modifier::DIM);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue