summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimm Bäder <mail@baedert.org>2017-06-27 12:28:25 +0200
committerTimm Bäder <mail@baedert.org>2017-06-28 13:21:00 +0200
commit0c2facc8497182c2cc9cd6d0cc08e47776664d89 (patch)
tree49991b005b352a2f4d60edef7f33063bbdc4829d
parent0b2b7f3d514150be5ce90377df0b86e1641534bf (diff)
downloadgtk+-0c2facc8497182c2cc9cd6d0cc08e47776664d89.tar.gz
widget: black is the new red
-rw-r--r--gtk/gtkwidget.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkwidget.c b/gtk/gtkwidget.c
index 2736cab7ff..a986dbcdd3 100644
--- a/gtk/gtkwidget.c
+++ b/gtk/gtkwidget.c
@@ -15200,14 +15200,14 @@ gtk_widget_maybe_add_debug_render_nodes (GtkWidget *widget,
if (baseline != -1)
{
- GdkRGBA black = {1, 0, 0, 1};
+ GdkRGBA red = {1, 0, 0, 1};
graphene_rect_t bounds;
graphene_rect_init (&bounds,
0, baseline,
priv->allocation.width, 1);
gtk_snapshot_append_color (snapshot,
- &black,
+ &red,
&bounds,
"Baseline Debug");
}