widget: Rename color variable to match the color
authorTimm Bäder <mail@baedert.org>
Tue, 31 Oct 2017 05:35:27 +0000 (06:35 +0100)
committerTimm Bäder <mail@baedert.org>
Tue, 31 Oct 2017 09:10:53 +0000 (10:10 +0100)
gtk/gtkwidget.c

index 37f725e726732d061dad29c05f2daf8c0ba4d893..f8cf4ace334e536ebfd76cade7a69bf8d442a72c 100644 (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;