From a0d6f3f9ecdf31538427f1f4bdd15fb9c4b2c6dc Mon Sep 17 00:00:00 2001 From: Matt Campbell Date: Sun, 21 Dec 2025 13:43:11 -0600 Subject: [PATCH] refactor!: Drop the redundant "bold" flag --- common/src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/common/src/lib.rs b/common/src/lib.rs index 1ba8b2c2..cae814ea 100644 --- a/common/src/lib.rs +++ b/common/src/lib.rs @@ -712,7 +712,6 @@ enum Flag { TouchTransparent, ReadOnly, Disabled, - Bold, Italic, ClipsChildren, IsLineBreakingObject, @@ -1644,7 +1643,6 @@ flag_methods! { (ReadOnly, is_read_only, set_read_only, clear_read_only), /// Use for a control or group of controls that disallows input. (Disabled, is_disabled, set_disabled, clear_disabled), - (Bold, is_bold, set_bold, clear_bold), (Italic, is_italic, set_italic, clear_italic), /// Indicates that this node clips its children, i.e. may have /// `overflow: hidden` or clip children by default.