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.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/displayapp/screens/BleIcon.cpp b/src/displayapp/screens/BleIcon.cpp
index 5058f3eb..a30d23bd 100644
--- a/src/displayapp/screens/BleIcon.cpp
+++ b/src/displayapp/screens/BleIcon.cpp
@@ -2,9 +2,11 @@
#include "displayapp/screens/Symbols.h"
using namespace Pinetime::Applications::Screens;
-const char* BleIcon::GetIcon(bool isConnected) {
- if (isConnected)
+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)
+ return Symbols::airplane;
else
- return "";
-} \ No newline at end of file
+ return Symbols::none;
+}