summaryrefslogtreecommitdiff
path: root/Applications
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-06-16 16:33:16 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-06-16 16:33:16 +0200
commitf49e5c673280ee10a08618df69bf985bb4d5284a (patch)
tree3e7b07dd0a0219545d2dfbd2bcef9219f3c0ccc5 /Applications
parentcf17e385b5c41ab0b5370c5ac2417d801ccea830 (diff)
downloadserenity-f49e5c673280ee10a08618df69bf985bb4d5284a.zip
PaintBrush: Reduce debug spam in the color editor dialog.
Diffstat (limited to 'Applications')
-rw-r--r--Applications/PaintBrush/ColorDialog.cpp3
1 files changed, 0 insertions, 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();
};