From f49e5c673280ee10a08618df69bf985bb4d5284a Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 16 Jun 2019 16:33:16 +0200 Subject: [PATCH] PaintBrush: Reduce debug spam in the color editor dialog. --- Applications/PaintBrush/ColorDialog.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/Applications/PaintBrush/ColorDialog.cpp b/Applications/PaintBrush/ColorDialog.cpp index 45cb4fe10f..6a0a2a5619 100644 --- a/Applications/PaintBrush/ColorDialog.cpp +++ b/Applications/PaintBrush/ColorDialog.cpp @@ -61,7 +61,6 @@ void ColorDialog::build() spinbox->set_value(initial_value); spinbox->on_change = [=](auto value) { - dbgprintf("on_change, component=%d, value=%d\n", component, value); if (component == Red) m_color.set_red(value); if (component == Green) @@ -69,8 +68,6 @@ void ColorDialog::build() if (component == Blue) m_color.set_blue(value); - dbgprintf("m_color is now: %s\n", m_color.to_string().characters()); - preview_widget->set_background_color(m_color); preview_widget->update(); };