From f59f4f2ddec9574a5e85a2d68bf54472f5793d59 Mon Sep 17 00:00:00 2001 From: Hixie Date: Tue, 23 Jun 2015 10:08:13 -0700 Subject: [PATCH] Fix the indenting of the toString() output of the RenderTree, which was broken around RenderParagraph. TBR=eseidel Review URL: https://codereview.chromium.org/1199913009. --- sdk/lib/rendering/paragraph.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/lib/rendering/paragraph.dart b/sdk/lib/rendering/paragraph.dart index 1af7406e6..f89220273 100644 --- a/sdk/lib/rendering/paragraph.dart +++ b/sdk/lib/rendering/paragraph.dart @@ -176,7 +176,7 @@ class RenderParagraph extends RenderBox { String debugDescribeSettings(String prefix) { String result = '${super.debugDescribeSettings(prefix)}'; - result += '${prefix}inline: ${inline}\n'; + result += '${prefix}inline:\n${inline.toString("$prefix ")}\n'; return result; } } -- GitLab