From 4b41d0683235fc82f599233be88830ced67df4a9 Mon Sep 17 00:00:00 2001 From: Ally Parker Date: Tue, 29 Dec 2020 14:00:45 +0000 Subject: [PATCH] Use bluetooth symbol instead of wifi --- app/src/display/widgets/output_status.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/display/widgets/output_status.c b/app/src/display/widgets/output_status.c index 9a725113..63cfc270 100644 --- a/app/src/display/widgets/output_status.c +++ b/app/src/display/widgets/output_status.c @@ -49,12 +49,12 @@ void set_status_symbol(lv_obj_t *label) { case ZMK_ENDPOINT_BLE: if (active_profie_bonded) { if (active_profile_connected) { - sprintf(text, LV_SYMBOL_WIFI "%i " LV_SYMBOL_OK, active_profile_index); + sprintf(text, LV_SYMBOL_BLUETOOTH "%i " LV_SYMBOL_OK, active_profile_index); } else { - sprintf(text, LV_SYMBOL_WIFI "%i " LV_SYMBOL_CLOSE, active_profile_index); + sprintf(text, LV_SYMBOL_BLUETOOTH "%i " LV_SYMBOL_CLOSE, active_profile_index); } } else { - sprintf(text, LV_SYMBOL_WIFI "%i " LV_SYMBOL_SETTINGS, active_profile_index); + sprintf(text, LV_SYMBOL_BLUETOOTH "%i " LV_SYMBOL_SETTINGS, active_profile_index); } break; }