widget: Rename color variable to match the color

This commit is contained in:
Timm Bäder 2017-10-31 06:35:27 +01:00
parent 23a1328fda
commit 45c03a9263

View File

@ -14938,7 +14938,7 @@ gtk_widget_maybe_add_debug_render_nodes (GtkWidget *widget,
if (GTK_DISPLAY_DEBUG_CHECK (display, RESIZE) &&
priv->highlight_resize)
{
GdkRGBA red = {0, 0, 1, 0.2};
GdkRGBA blue = {0, 0, 1, 0.2};
graphene_rect_t bounds;
graphene_rect_init (&bounds,
@ -14946,7 +14946,7 @@ gtk_widget_maybe_add_debug_render_nodes (GtkWidget *widget,
priv->allocation.width, priv->allocation.height);
gtk_snapshot_append_color (snapshot,
&red,
&blue,
&bounds,
"Baseline Debug");
priv->highlight_resize = FALSE;