mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-09 19:00:46 +00:00
Add non-chainable add_child
to LinearLayout
This commit is contained in:
parent
bea7240271
commit
c689a3ba7e
@ -1,4 +1,5 @@
|
||||
use XY;
|
||||
use With;
|
||||
use direction;
|
||||
use view::View;
|
||||
use view::{Selector, SizeCache};
|
||||
@ -56,15 +57,20 @@ impl LinearLayout {
|
||||
}
|
||||
|
||||
/// Adds a child to the layout.
|
||||
pub fn child<V: View + 'static>(mut self, view: V) -> Self {
|
||||
///
|
||||
/// Chainable variant.
|
||||
pub fn child<V: View + 'static>(self, view: V) -> Self {
|
||||
self.with(|s| s.add_child(view))
|
||||
}
|
||||
|
||||
/// Adds a child to the layout.
|
||||
pub fn add_child<V: View + 'static>(&mut self, view: V) {
|
||||
self.children.push(Child {
|
||||
view: Box::new(view),
|
||||
size: Vec2::zero(),
|
||||
weight: 0,
|
||||
});
|
||||
self.invalidate();
|
||||
|
||||
self
|
||||
}
|
||||
|
||||
// Invalidate the view, to request a layout next time
|
||||
|
Loading…
Reference in New Issue
Block a user