Skip to content

Commit

Permalink
OLED - Fixed status not displaying ADJUST layer.
Browse files Browse the repository at this point in the history
  • Loading branch information
schizophrenical committed May 14, 2023
1 parent 2fc8dcb commit 04ed6fe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -167,12 +167,12 @@ bool oled_task_user(void) {
// Layer state
if (IS_LAYER_ON(_QWERTY)){
oled_write_ln(" || - Layer: QWERTY", false);
} else if (IS_LAYER_ON(_LOWER) && IS_LAYER_ON(_RAISE)) {
oled_write_ln(" || - Layer: ADJ ", false);
} else if (IS_LAYER_ON(_LOWER)){
oled_write_ln(" || - Layer: SYMBOLS", false);
oled_write_ln(" || - Layer: SYMB ", false);
} else if (IS_LAYER_ON(_RAISE)){
oled_write_ln(" || - Layer: FUNCTION KEYS", false);
} else {
oled_write_ln(" || - Layer: ADJUST", false);
oled_write_ln(" || - Layer: FUNC ", false);
}
// WPM
oled_write(" || - WPM: ", false);
Expand Down

0 comments on commit 04ed6fe

Please sign in to comment.