| Index: sky/framework/components/popup_menu.dart
|
| diff --git a/sky/framework/components/popup_menu.dart b/sky/framework/components/popup_menu.dart
|
| index 4375eefed9086f9dadeea89ee8c72f961d2c2aa2..90e099496207c2e62013a18786137a9a05b646ea 100644
|
| --- a/sky/framework/components/popup_menu.dart
|
| +++ b/sky/framework/components/popup_menu.dart
|
| @@ -92,8 +92,8 @@ class PopupMenu extends AnimatedComponent {
|
| void _measureSize() {
|
| setState(() {
|
| var root = getRoot();
|
| - _width = root.clientWidth;
|
| - _height = root.clientHeight;
|
| + _width = root.width.round();
|
| + _height = root.height.round();
|
| });
|
| }
|
|
|
|
|