summaryrefslogtreecommitdiff
path: root/keyboards/rgbkb/mun/keymaps/default/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/rgbkb/mun/keymaps/default/keymap.c')
-rw-r--r--keyboards/rgbkb/mun/keymaps/default/keymap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/rgbkb/mun/keymaps/default/keymap.c b/keyboards/rgbkb/mun/keymaps/default/keymap.c
index 866b8a0d15..bdc2ea9811 100644
--- a/keyboards/rgbkb/mun/keymaps/default/keymap.c
+++ b/keyboards/rgbkb/mun/keymaps/default/keymap.c
@@ -226,8 +226,8 @@ static void render_leds(void)
static void render_touch(void)
{
// Host Touch LED Status
- oled_write_P(!touch_encoder_toggled() ? PSTR("TOUCH") : PSTR(" "), false);
- oled_write_P(touch_encoder_calibrating() ? PSTR("CLBRT") : PSTR(" "), false);
+ oled_write_P(touch_encoder_is_on() ? PSTR("TOUCH") : PSTR(" "), false);
+ oled_write_P(touch_encoder_is_calibrating() ? PSTR("CLBRT") : PSTR(" "), false);
}
bool oled_task_user(void) {