From 73badb9006d3ce7416a5af380f47de99f6c77e47 Mon Sep 17 00:00:00 2001 From: jackyarndley <34801340+jackyarndley@users.noreply.github.com> Date: Thu, 19 Nov 2020 14:08:40 +1300 Subject: [PATCH] removed some extra output --- Cargo.lock | 2 +- src/main.rs | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) 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;