diff options
author | Benjamin Otte <otte@redhat.com> | 2018-04-24 03:17:23 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2018-04-24 04:06:58 +0200 |
commit | 73b4a62f5101473cf585f844579922a0e03c376a (patch) | |
tree | e728288a7072b8170e48b126e418353c193389c2 /tests/testblur.c | |
parent | 49f9d2108dbde96d2d5555f737db0183e4002a8a (diff) | |
download | gtk+-73b4a62f5101473cf585f844579922a0e03c376a.tar.gz |
snapshot: Redo debug messages
Instead of every snapshot function having debug messages, have an
explicit gtk_snapshot_push_debug() function that appends a debug node.
Diffstat (limited to 'tests/testblur.c')
-rw-r--r-- | tests/testblur.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testblur.c b/tests/testblur.c index 5540d6d760..bbbf888da5 100644 --- a/tests/testblur.c +++ b/tests/testblur.c @@ -27,7 +27,7 @@ snapshot_blur (GtkWidget *widget, { GtkBlurBox *box = (GtkBlurBox *) widget; - gtk_snapshot_push_blur (snapshot, box->radius, "blur"); + gtk_snapshot_push_blur (snapshot, box->radius); GTK_WIDGET_CLASS (gtk_blur_box_parent_class)->snapshot (widget, snapshot); |