From be51cac3d71d5eb49e266d0d2aae6ab945caf560 Mon Sep 17 00:00:00 2001 From: Cory Forsstrom Date: Tue, 14 Sep 2021 09:10:37 -0700 Subject: Add Align::Fill variant --- core/src/align.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'core') 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. -- cgit