diff --git a/Cargo.toml b/Cargo.toml index a20d241..9e724f2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fftviz" -version = "0.2.0" +version = "0.2.1" edition = "2021" authors = ["Gursimar Singh "] license = "MIT" diff --git a/src/systems/update_view_settings.rs b/src/systems/update_view_settings.rs index 8d02056..1166157 100644 --- a/src/systems/update_view_settings.rs +++ b/src/systems/update_view_settings.rs @@ -67,7 +67,6 @@ pub fn update_view_settings ( // Update border size if differencing_args.border_size != args.border_size { - dbg!("Update occured"); let w = window.single_mut().width(); let bar_size = ((w as f32 / (app_state.curr_bars.len() / 2) as f32) - args.border_size as f32) / 2.0;