From 38a44401d9cd9e3fe06cba214b117d3015404d49 Mon Sep 17 00:00:00 2001 From: Jonathan Johnson Date: Thu, 21 Nov 2024 07:36:58 -0800 Subject: [PATCH] Temporarily change VerticalAlign to Top --- src/styles.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles.rs b/src/styles.rs index 679d8b496..d24daba49 100644 --- a/src/styles.rs +++ b/src/styles.rs @@ -2835,11 +2835,11 @@ impl RequireInvalidation for HorizontalAlign { #[derive(Default, Debug, Clone, Copy, Eq, PartialEq)] pub enum VerticalAlign { /// Align towards the top. + #[default] // TODO this should be baseline, not top. Top, /// Align towards the center/middle. Center, /// Align towards the bottom. - #[default] // TODO this should be baseline, not bottom. Bottom, }