Skip to content

Commit

Permalink
correct ordering of functions in config.rs from previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tjex committed Dec 14, 2024
1 parent de02ae4 commit 9eb9f75
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -698,22 +698,22 @@ impl Config {
.unwrap_or(false)
}

fn get_uda_selection_blink(data: &str) -> bool {
Self::get_config("uda.taskwarrior-tui.selection.blink", data)
fn get_uda_selection_dim(data: &str) -> bool {
Self::get_config("uda.taskwarrior-tui.selection.dim", data)
.unwrap_or_default()
.get_bool()
.unwrap_or(false)
}

fn get_uda_selection_reverse(data: &str) -> bool {
Self::get_config("uda.taskwarrior-tui.selection.reverse", data)
fn get_uda_selection_blink(data: &str) -> bool {
Self::get_config("uda.taskwarrior-tui.selection.blink", data)
.unwrap_or_default()
.get_bool()
.unwrap_or(false)
}

fn get_uda_selection_dim(data: &str) -> bool {
Self::get_config("uda.taskwarrior-tui.selection.dim", data)
fn get_uda_selection_reverse(data: &str) -> bool {
Self::get_config("uda.taskwarrior-tui.selection.reverse", data)
.unwrap_or_default()
.get_bool()
.unwrap_or(false)
Expand Down

0 comments on commit 9eb9f75

Please sign in to comment.