summaryrefslogtreecommitdiff
path: root/gtk
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2019-03-24 11:14:20 -0400
committerMatthias Clasen <mclasen@redhat.com>2019-03-24 20:47:26 -0400
commit661e195ffca1bbf4972474e83e621178b7e72381 (patch)
tree343d9e8b520fd6b1d98f34ba147c71868dec3c06 /gtk
parent551ced9ae44d11bd24064e6829a8900eb1eaca65 (diff)
downloadgtk+-661e195ffca1bbf4972474e83e621178b7e72381.tar.gz
color editor: Don't warn if editing is cancelled
Thats a valid way to end color picking.
Diffstat (limited to 'gtk')
-rw-r--r--gtk/gtkcoloreditor.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/gtk/gtkcoloreditor.c b/gtk/gtkcoloreditor.c
index 8670027631..e6b4035d1e 100644
--- a/gtk/gtkcoloreditor.c
+++ b/gtk/gtkcoloreditor.c
@@ -356,7 +356,6 @@ color_picked (GObject *source,
color = gtk_color_picker_pick_finish (picker, res, &error);
if (color == NULL)
{
- g_warning ("Picking color failed: %s", error->message);
g_error_free (error);
}
else