Skip to content

Commit

Permalink
Add ifdef for oled config vs layers
Browse files Browse the repository at this point in the history
  • Loading branch information
halcyonCorsair committed Jan 17, 2022
1 parent e9e4570 commit 7726eeb
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions users/halcyoncorsair/oled_config.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,16 @@ bool oled_task_user(void) {
case _NAV:
oled_write_P(PSTR("Nav\n"), false);
break;
#ifdef ENABLE_SYMBOL_LAYER_ORIGINAL
case _NUM:
oled_write_P(PSTR("Num\n"), false);
break;
// case _WINMGMT:
// oled_write_P(PSTR("Divvy\n"), false);
// break;
#endif
#ifdef ENABLE_WINMGMT_LAYER
case _WINMGMT:
oled_write_P(PSTR("Divvy\n"), false);
break;
#endif
case _ADJUST:
oled_write_P(PSTR("Adjust\n"), false);
break;
Expand Down

0 comments on commit 7726eeb

Please sign in to comment.