| Index: sky/sdk/lib/widgets/material_button.dart
|
| diff --git a/sky/sdk/lib/widgets/material_button.dart b/sky/sdk/lib/widgets/material_button.dart
|
| index 616a2d32eca1c9f50babb1333573f656709483cf..965d34d5520e824113d880d37543eb5aac5fba61 100644
|
| --- a/sky/sdk/lib/widgets/material_button.dart
|
| +++ b/sky/sdk/lib/widgets/material_button.dart
|
| @@ -41,8 +41,8 @@ abstract class MaterialButton extends ButtonBase {
|
| padding: new EdgeDims.symmetric(horizontal: 8.0),
|
| child: new Center(child: child) // TODO(ianh): figure out a way to compell the child to have gray text when disabled...
|
| );
|
| - return new EventListenerNode(
|
| - new Container(
|
| + return new Listener(
|
| + child: new Container(
|
| height: 36.0,
|
| constraints: new BoxConstraints(minWidth: 88.0),
|
| margin: new EdgeDims.all(8.0),
|
|
|