Skip to content

Commit

Permalink
Reduce default path precision
Browse files Browse the repository at this point in the history
  • Loading branch information
tyt2y3 committed Nov 12, 2023
1 parent fa7d021 commit 2774fc0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cmdapp/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ impl Default for Config {
length_threshold: 4.0,
splice_threshold: 45,
max_iterations: 10,
path_precision: Some(8),
path_precision: Some(2),
}
}
}
Expand Down Expand Up @@ -115,7 +115,7 @@ impl Config {
length_threshold: 4.0,
max_iterations: 10,
splice_threshold: 45,
path_precision: Some(8),
path_precision: Some(2),
},
Preset::Poster => Self {
color_mode: ColorMode::Color,
Expand All @@ -128,7 +128,7 @@ impl Config {
length_threshold: 4.0,
max_iterations: 10,
splice_threshold: 45,
path_precision: Some(8),
path_precision: Some(2),
},
Preset::Photo => Self {
color_mode: ColorMode::Color,
Expand All @@ -141,7 +141,7 @@ impl Config {
length_threshold: 4.0,
max_iterations: 10,
splice_threshold: 45,
path_precision: Some(8),
path_precision: Some(2),
},
}
}
Expand Down

0 comments on commit 2774fc0

Please sign in to comment.