summaryrefslogtreecommitdiffstats
path: root/lazy/src
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2023-02-17 16:53:02 +0100
committerLibravatar GitHub <noreply@github.com>2023-02-17 16:53:02 +0100
commit7dc1fb488ddbd12519571b51d75ae0c28875911d (patch)
tree92590830b23bb714ec8024766fef7273b041bbf3 /lazy/src
parentf75e0202575ca6e3ebf7d817eecbf51e198506fd (diff)
parentfd1408693322f5bfdaee7f27bd098808658d7310 (diff)
downloadiced-7dc1fb488ddbd12519571b51d75ae0c28875911d.tar.gz
iced-7dc1fb488ddbd12519571b51d75ae0c28875911d.tar.bz2
iced-7dc1fb488ddbd12519571b51d75ae0c28875911d.zip
Merge pull request #1711 from iced-rs/feature/generic-pixel-units
Generic pixel units
Diffstat (limited to '')
-rw-r--r--lazy/src/responsive.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/lazy/src/responsive.rs b/lazy/src/responsive.rs
index 93069493..57c07de1 100644
--- a/lazy/src/responsive.rs
+++ b/lazy/src/responsive.rs
@@ -42,7 +42,7 @@ where
content: RefCell::new(Content {
size: Size::ZERO,
layout: layout::Node::new(Size::ZERO),
- element: Element::new(horizontal_space(Length::Units(0))),
+ element: Element::new(horizontal_space(0)),
}),
}
}