From fa5203e700ae7d918591021e8880369acec867bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timm=20B=C3=A4der?= Date: Tue, 4 Jul 2017 14:59:02 +0200 Subject: [PATCH] widget: Fix copy&paste error when creating debug nodes --- gtk/gtkwidget.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkwidget.c b/gtk/gtkwidget.c index d967b8d01c..bc716c3fe6 100644 --- a/gtk/gtkwidget.c +++ b/gtk/gtkwidget.c @@ -15165,7 +15165,7 @@ gtk_widget_maybe_add_debug_render_nodes (GtkWidget *widget, graphene_rect_init (&bounds, priv->allocation.width - margin.right, margin.top, - margin.left, priv->allocation.height - margin.top - margin.bottom); + margin.right, priv->allocation.height - margin.top - margin.bottom); gtk_snapshot_append_color (snapshot, &margin_color, &bounds, "Margin right");