From 2774fc06c9b47d55965267f41f848e9298e9cc23 Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Sun, 12 Nov 2023 23:05:45 +0000 Subject: [PATCH] Reduce default path precision --- cmdapp/src/config.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cmdapp/src/config.rs b/cmdapp/src/config.rs index 4988bda..63b27ad 100644 --- a/cmdapp/src/config.rs +++ b/cmdapp/src/config.rs @@ -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), } } } @@ -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, @@ -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, @@ -141,7 +141,7 @@ impl Config { length_threshold: 4.0, max_iterations: 10, splice_threshold: 45, - path_precision: Some(8), + path_precision: Some(2), }, } }