diff options
Diffstat (limited to 'widget/src/column.rs')
| -rw-r--r-- | widget/src/column.rs | 13 | 
1 files changed, 6 insertions, 7 deletions
| diff --git a/widget/src/column.rs b/widget/src/column.rs index 52cf35ce..9867d97e 100644 --- a/widget/src/column.rs +++ b/widget/src/column.rs @@ -7,7 +7,7 @@ use crate::core::renderer;  use crate::core::widget::{Operation, Tree};  use crate::core::{      Alignment, Clipboard, Element, Layout, Length, Padding, Pixels, Rectangle, -    Shell, Widget, +    Shell, Size, Widget,  };  /// A container that distributes its contents vertically. @@ -129,12 +129,11 @@ where          tree.diff_children(&self.children);      } -    fn width(&self) -> Length { -        self.width -    } - -    fn height(&self) -> Length { -        self.height +    fn size(&self) -> Size<Length> { +        Size { +            width: self.width, +            height: self.height, +        }      }      fn layout( | 
