[Keymap] fix OLED display on Helix keyboard keymaps default and… (#8737)
Since #7773, the mode number of RGBlight is no longer displayed on the Helix OLEDs. I fixed this.
This commit is contained in:
parent
f7601dba13
commit
511fe643c2
2 changed files with 4 additions and 4 deletions
|
@ -536,9 +536,9 @@ static void render_logo(struct CharacterMatrix *matrix) {
|
|||
}
|
||||
|
||||
static void render_rgbled_status(bool full, struct CharacterMatrix *matrix) {
|
||||
#if defined(RGBLIGHT_ENABLE) && defined(RGBLIGHT_ANIMATIONS)
|
||||
#ifdef RGBLIGHT_ENABLE
|
||||
char buf[30];
|
||||
if(rgblight_config.enable) {
|
||||
if (RGBLIGHT_MODES > 1 && rgblight_config.enable) {
|
||||
if (full) {
|
||||
snprintf(buf, sizeof(buf), " LED %2d: %d,%d,%d ",
|
||||
rgblight_config.mode,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue