mirror of
https://github.com/kdheepak/taskwarrior-tui.git
synced 2025-08-26 03:07:18 +02:00
Use heavy check mark and empty string for mark and unmark defaults
This commit is contained in:
parent
2deb44b593
commit
b6a1c0f513
1 changed files with 2 additions and 2 deletions
|
@ -340,7 +340,7 @@ impl Config {
|
|||
fn get_uda_mark_indicator() -> String {
|
||||
let indicator = Self::get_config("uda.taskwarrior-tui.mark.indicator");
|
||||
match indicator {
|
||||
None => "☑ ".to_string(),
|
||||
None => "✔ ".to_string(),
|
||||
Some(indicator) => format!("{} ", indicator),
|
||||
}
|
||||
}
|
||||
|
@ -348,7 +348,7 @@ impl Config {
|
|||
fn get_uda_unmark_indicator() -> String {
|
||||
let indicator = Self::get_config("uda.taskwarrior-tui.unmark.indicator");
|
||||
match indicator {
|
||||
None => "☐ ".to_string(),
|
||||
None => " ".to_string(),
|
||||
Some(indicator) => format!("{} ", indicator),
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue