summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorLibravatar Cory Forsstrom <cory.forsstrom@lich.io>2021-09-14 09:10:37 -0700
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2021-09-20 15:11:06 +0700
commitbe51cac3d71d5eb49e266d0d2aae6ab945caf560 (patch)
treebb7c53cef31db77ce00f9c0e4729b48b61a2db15 /core
parent456a3f15e4226cc781a8825bddaaf066476d4351 (diff)
downloadiced-be51cac3d71d5eb49e266d0d2aae6ab945caf560.tar.gz
iced-be51cac3d71d5eb49e266d0d2aae6ab945caf560.tar.bz2
iced-be51cac3d71d5eb49e266d0d2aae6ab945caf560.zip
Add Align::Fill variant
Diffstat (limited to 'core')
-rw-r--r--core/src/align.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/core/src/align.rs b/core/src/align.rs
index 8a59afa1..aa8838c6 100644
--- a/core/src/align.rs
+++ b/core/src/align.rs
@@ -9,6 +9,9 @@ pub enum Align {
/// Align at the end of the axis.
End,
+
+ /// Fill the entire axis.
+ Fill,
}
/// The horizontal alignment of some resource.