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

Unified Diff: sky/sdk/lib/widgets/tool_bar.dart

Issue 1179763009: Give ParentDataNodes snappier names (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: nit 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 | « sky/sdk/lib/widgets/menu_item.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/sdk/lib/widgets/tool_bar.dart
diff --git a/sky/sdk/lib/widgets/tool_bar.dart b/sky/sdk/lib/widgets/tool_bar.dart
index 525153d42b31756e4f060fcf415ce5b22d44c73f..36557b373913dbd275ed4cd7d6466f11b8582c0f 100644
--- a/sky/sdk/lib/widgets/tool_bar.dart
+++ b/sky/sdk/lib/widgets/tool_bar.dart
@@ -28,8 +28,14 @@ class ToolBar extends Component {
children.add(left);
if (center != null) {
- children.add(new FlexExpandingChild(
- new Padding(child: center, padding: new EdgeDims.only(left: 24.0))));
+ children.add(
+ new Flexible(
+ child: new Padding(
+ child: center,
+ padding: new EdgeDims.only(left: 24.0)
+ )
+ )
+ );
}
if (right != null)
« no previous file with comments | « sky/sdk/lib/widgets/menu_item.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698