From bb2a2c24f9f32ed5b8d1d485ba9bc93ca7d190f7 Mon Sep 17 00:00:00 2001 From: Richard Acayan Date: Thu, 31 Oct 2024 18:33:27 -0400 Subject: [PATCH] core: graphics: set secondary flag for number key switcher label The switch_numeric key label should be grey. Set the flag for a secondary key label. --- src/core/graphics.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/graphics.rs b/src/core/graphics.rs index 71d20af..ad3ec1a 100644 --- a/src/core/graphics.rs +++ b/src/core/graphics.rs @@ -99,7 +99,7 @@ struct Label<'a> { const LABELS: [Label; 24] = [ Label { label: "123+", - secondary: false, small: true, }, + secondary: true, small: true, }, Label { label: "ABC", secondary: true, small: true, }, Label { label: "Alt",