From 0109f30e220baadcad92ae69a483cc2c546727fc Mon Sep 17 00:00:00 2001 From: Jules Aguillon Date: Sun, 8 Feb 2026 00:33:52 +0100 Subject: Fix label color when keys are pressed (#1173) The color of labels on a pressed key that were not the label being activated (eg. the labels on the corners when activating the label in the centre) was not correct.--- srcs/juloo.keyboard2/Keyboard2View.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'srcs') diff --git a/srcs/juloo.keyboard2/Keyboard2View.java b/srcs/juloo.keyboard2/Keyboard2View.java index 068ef67..f0fd879 100644 --- a/srcs/juloo.keyboard2/Keyboard2View.java +++ b/srcs/juloo.keyboard2/Keyboard2View.java @@ -417,8 +417,8 @@ public class Keyboard2View extends View { if ((flags & Pointers.FLAG_P_LOCKED) != 0) return _theme.lockedColor; - return _theme.activatedColor; } + return _theme.activatedColor; } if (k.hasFlagsAny(KeyValue.FLAG_SECONDARY | KeyValue.FLAG_GREYED)) { -- cgit v1.2.3