summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/BleIcon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/displayapp/screens/BleIcon.cpp')
-rw-r--r--src/displayapp/screens/BleIcon.cpp15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/displayapp/screens/BleIcon.cpp b/src/displayapp/screens/BleIcon.cpp
index a30d23b..019f803 100644
--- a/src/displayapp/screens/BleIcon.cpp
+++ b/src/displayapp/screens/BleIcon.cpp
@@ -2,11 +2,14 @@
#include "displayapp/screens/Symbols.h"
using namespace Pinetime::Applications::Screens;
-const char* BleIcon::GetIcon(Pinetime::Controllers::Ble::ConnectStates state) {
- if (state == Pinetime::Controllers::Ble::ConnectStates::Connected)
- return Symbols::bluetooth;
- else if (state == Pinetime::Controllers::Ble::ConnectStates::Airplane)
+const char* BleIcon::GetIcon(bool isRadioEnabled, bool isConnected) {
+ if(!isRadioEnabled) {
return Symbols::airplane;
- else
- return Symbols::none;
+ }
+
+ if (isConnected) {
+ return Symbols::bluetooth;
+ }
+
+ return Symbols::none;
}