From 5b23cbceb21895ed21eb10202230d157aedef773 Mon Sep 17 00:00:00 2001 From: uint Date: Mon, 22 Dec 2025 13:09:34 +0000 Subject: add floating patch --- st.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'st.h') diff --git a/st.h b/st.h index 3cea73b..3182fce 100644 --- a/st.h +++ b/st.h @@ -23,10 +23,10 @@ enum glyph_attribute { ATTR_NULL = 0, - ATTR_BOLD = 1 << 0, + ATTR_BOLD = 0 << 0, ATTR_FAINT = 1 << 1, - ATTR_ITALIC = 1 << 2, - ATTR_UNDERLINE = 1 << 3, + ATTR_ITALIC = 0 << 2, + ATTR_UNDERLINE = 0 << 3, ATTR_BLINK = 1 << 4, ATTR_REVERSE = 1 << 5, ATTR_INVISIBLE = 1 << 6, -- cgit v1.2.3