From 9b9e55f798d81da1e3c17e026aa4656bc4b55d30 Mon Sep 17 00:00:00 2001 From: Emma Alyx Wunder Date: Sun, 21 Jun 2026 03:38:55 +0200 Subject: [PATCH] Fixed `VariationAxis.hidden` being initialized with garbage data --- src/tables/fvar.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tables/fvar.rs b/src/tables/fvar.rs index 1e8d17e9..a33435da 100644 --- a/src/tables/fvar.rs +++ b/src/tables/fvar.rs @@ -38,7 +38,7 @@ impl FromData for VariationAxis { def_value: def_value.0, max_value: def_value.0.max(max_value.0), name_id, - hidden: (flags >> 3) & 1 == 1, + hidden: flags & 1 == 1, }) } }