Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Unified Diff: sky/sdk/lib/rendering/paragraph.dart

Issue 1199913009: Fix the indenting of the toString() output of the RenderTree, which was broken around RenderParagra… (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/sdk/lib/rendering/paragraph.dart
diff --git a/sky/sdk/lib/rendering/paragraph.dart b/sky/sdk/lib/rendering/paragraph.dart
index 1af7406e68ec31a0f3eab5c30f362752015ed4c0..f89220273faa499d4ad0826e711ed061f703958e 100644
--- a/sky/sdk/lib/rendering/paragraph.dart
+++ b/sky/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;
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698