diff options
author | 2023-02-28 16:03:05 +0100 | |
---|---|---|
committer | 2023-02-28 16:03:05 +0100 | |
commit | 86b85d1436a44e82a9765f9d82b026faf26e22de (patch) | |
tree | a8947e78efcd14435e47f4b2db89d2c58e4471ec /core | |
parent | 5f93437285c4451a8b5ffac1b3c9e1b91e8a5918 (diff) | |
parent | 9e815cb749f1bf6bce0232e870be266aca0c0742 (diff) | |
download | iced-86b85d1436a44e82a9765f9d82b026faf26e22de.tar.gz iced-86b85d1436a44e82a9765f9d82b026faf26e22de.tar.bz2 iced-86b85d1436a44e82a9765f9d82b026faf26e22de.zip |
Merge pull request #1735 from iced-rs/remove-alignment-fill
Remove `Fill` variant for `Alignment`
Diffstat (limited to '')
-rw-r--r-- | core/src/alignment.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/core/src/alignment.rs b/core/src/alignment.rs index 73f41d3f..51b7fca9 100644 --- a/core/src/alignment.rs +++ b/core/src/alignment.rs @@ -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 { |