diff --git a/Cargo.lock b/Cargo.lock index 2290a4e..63e896d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1596,7 +1596,7 @@ checksum = "3e52c148ef37f8c375d49d5a73aa70713125b7f19095948a923f80afdeb22ec2" [[package]] name = "rust_fractal" -version = "0.12.0" +version = "0.13.0" dependencies = [ "clap", "config", diff --git a/src/main.rs b/src/main.rs index fb18f17..ee5f045 100644 --- a/src/main.rs +++ b/src/main.rs @@ -331,8 +331,6 @@ impl Widget for FractalWidget { if let Some(rotation) = command.get::(Selector::new("set_rotation")) { let new_rotate = (rotation % 360.0 + 360.0) % 360.0; - println!("{} {}", rotation, new_rotate); - settings.set("rotate", new_rotate).unwrap(); data.temporary_rotation = new_rotate;