summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/WatchFaceAnalog24.cpp
diff options
context:
space:
mode:
authorMichele Bini <michele.bini@gmail.com>2022-04-10 04:04:38 (GMT)
committerMichele Bini <michele.bini@gmail.com>2022-04-10 04:04:38 (GMT)
commitbf92c0326a6c81eb1c344847fd677fccd4171c92 (patch)
tree784a7ac08e1c42872532a94b1bf6d9040089de98 /src/displayapp/screens/WatchFaceAnalog24.cpp
parent175a08f386575dced13365f179b44ea1f208a839 (diff)
integration fixes
Diffstat (limited to 'src/displayapp/screens/WatchFaceAnalog24.cpp')
-rw-r--r--src/displayapp/screens/WatchFaceAnalog24.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/displayapp/screens/WatchFaceAnalog24.cpp b/src/displayapp/screens/WatchFaceAnalog24.cpp
index 29c1095..875c0f1 100644
--- a/src/displayapp/screens/WatchFaceAnalog24.cpp
+++ b/src/displayapp/screens/WatchFaceAnalog24.cpp
@@ -206,9 +206,8 @@ void WatchFaceAnalog24::Refresh() {
}
bleState = bleController.IsConnected();
- bleRadioEnabled = bleController.IsRadioEnabled();
- if (bleState.IsUpdated() || bleRadioEnabled.IsUpdated()) {
- lv_label_set_text(bleIcon, BleIcon::GetIcon(bleRadioEnabled.Get(), bleState.Get()));
+ if (bleState.IsUpdated()) {
+ lv_label_set_text(bleIcon, BleIcon::GetIcon(bleState.Get()));
}
notificationState = notificationManager.AreNewNotificationsAvailable();