core: graphics: use pressed color for pressed keys

The locked label color is a special color that displays when the user
holds a modifier key for very long. In !7, this locked color replaced
the color for the pressed non-modifier key with no explanation. Revert
the change and use the "label_pressed" color for a non-modifier key
being pressed.
This commit is contained in:
Richard Acayan 2025-06-12 23:20:45 -04:00
parent a02f404832
commit c911577eb8
No known key found for this signature in database
GPG key ID: 0346F4894879DB73

View file

@ -510,7 +510,7 @@ impl<D: Display> Graphics<D> {
} }
if part.presses() != 0 { if part.presses() != 0 {
return colors.label_locked; return colors.label_pressed;
} }
if sublabel { if sublabel {