From 71ca235a090885b199f814fe0aa28210049edeb0 Mon Sep 17 00:00:00 2001 From: Richard Acayan Date: Mon, 30 Sep 2024 22:12:59 -0400 Subject: [PATCH] core: graphics: add label metadata for layout switching keys Add properties for these labels so they can be used in keys that switch the layout. --- src/core/graphics.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/core/graphics.rs b/src/core/graphics.rs index af3dcdb..a580d76 100644 --- a/src/core/graphics.rs +++ b/src/core/graphics.rs @@ -97,7 +97,11 @@ struct Label<'a> { small: bool, } -const LABELS: [Label; 22] = [ +const LABELS: [Label; 24] = [ + Label { label: "123+", + secondary: false, small: true, }, + Label { label: "ABC", + secondary: true, small: true, }, Label { label: "Alt", secondary: true, small: true, }, Label { label: "Ctrl",