Remove Fill variant for Alignment

Implementing this generically in our `flex` logic has an exponential
cost. Let's explore other options!
This commit is contained in:
Héctor Ramón Jiménez 2023-02-27 16:49:25 +01:00
parent 5f93437285
commit 9e815cb749
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
6 changed files with 14 additions and 72 deletions

View file

@ -11,9 +11,6 @@ pub enum Alignment {
/// Align at the end of the axis.
End,
/// Fill the entire axis.
Fill,
}
impl From<Horizontal> for Alignment {