core: graphics: add switch_greekmath label flags

The label for the layout switcher should be gray and have a small font.
Add the flags for it.
This commit is contained in:
Richard Acayan 2024-10-31 18:36:29 -04:00
parent bb2a2c24f9
commit 92983bcc99
No known key found for this signature in database
GPG key ID: 0346F4894879DB73

View file

@ -97,7 +97,7 @@ struct Label<'a> {
small: bool, small: bool,
} }
const LABELS: [Label; 24] = [ const LABELS: [Label; 25] = [
Label { label: "123+", Label { label: "123+",
secondary: true, small: true, }, secondary: true, small: true, },
Label { label: "ABC", Label { label: "ABC",
@ -118,6 +118,8 @@ const LABELS: [Label; 24] = [
secondary: true, small: true, }, secondary: true, small: true, },
Label { label: "Meta", Label { label: "Meta",
secondary: true, small: true, }, secondary: true, small: true, },
Label { label: "πλ∇¬",
secondary: true, small: true, },
Label { label: "\u{2190}", // LEFTWARDS ARROW Label { label: "\u{2190}", // LEFTWARDS ARROW
secondary: true, small: false, }, secondary: true, small: false, },
Label { label: "\u{2191}", // UPWARDS ARROW Label { label: "\u{2191}", // UPWARDS ARROW