mirror of
https://github.com/kdheepak/taskwarrior-tui.git
synced 2025-08-25 17:57:19 +02:00
fix: Patch selection style with user defined style 🐛
This commit is contained in:
parent
b203d32725
commit
8e43e88831
1 changed files with 1 additions and 1 deletions
|
@ -1179,7 +1179,7 @@ impl TaskwarriorTui {
|
|||
for (i, task) in tasks.iter().enumerate() {
|
||||
let style = self.style_for_task(&self.tasks[i]);
|
||||
if i == selected {
|
||||
highlight_style = self.config.uda_report_style_selection;
|
||||
highlight_style = style.patch(self.config.uda_report_style_selection);
|
||||
if self.config.uda_selection_bold {
|
||||
highlight_style = highlight_style.add_modifier(Modifier::BOLD);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue