~ruther/qmk_firmware

8d8775aff29ffd403afdabf86b601e7f3d7ebd74 — QMK Bot 1 year, 8 months ago 413c3d3 + 81ea4f9
Merge remote-tracking branch 'origin/master' into develop
M keyboards/nullbitsco/snap/keymaps/bongo_reactive/keymap.c => keyboards/nullbitsco/snap/keymaps/bongo_reactive/keymap.c +1 -1
@@ 92,7 92,7 @@ static void render_status(void) {

    // Only update if the LED state has changed
    // Otherwise, the OLED will not turn off if an LED is on.
    if (persistent_led_state != led_state) {
    if (persistent_led_state.raw != led_state.raw) {
        persistent_led_state = led_state;
        
        oled_write_ln_P(PSTR(""), false);

M keyboards/nullbitsco/snap/keymaps/oled/keymap.c => keyboards/nullbitsco/snap/keymaps/oled/keymap.c +1 -1
@@ 119,7 119,7 @@ static void render_status(void) {

    // Only update if the LED state has changed
    // Otherwise, the OLED will not turn off if an LED is on.
    if (persistent_led_state != led_state) {
    if (persistent_led_state.raw != led_state.raw) {
        persistent_led_state = led_state;
        
        oled_write_ln_P(PSTR(""), false);

M keyboards/nullbitsco/snap/keymaps/typehud/keymap.c => keyboards/nullbitsco/snap/keymaps/typehud/keymap.c +1 -1
@@ 99,7 99,7 @@ static void render_status(void) {

    // Only update if the LED state has changed
    // Otherwise, the OLED will not turn off if an LED is on.
    if (persistent_led_state != led_state) {
    if (persistent_led_state.raw != led_state.raw) {
        persistent_led_state = led_state;

        oled_write_ln_P(PSTR("            "), false);

Do not follow this link