ef44b763d9
Apply a few changes that were requested in the PR during the review. # Conflicts: # src/CMakeLists.txt # src/displayapp/Apps.h # src/displayapp/DisplayApp.cpp # src/displayapp/Messages.h # src/displayapp/screens/settings/Settings.cpp
16 lines
342 B
C++
16 lines
342 B
C++
#include "displayapp/screens/BleIcon.h"
|
|
#include "displayapp/screens/Symbols.h"
|
|
using namespace Pinetime::Applications::Screens;
|
|
|
|
const char* BleIcon::GetIcon(bool isRadioEnabled, bool isConnected) {
|
|
if(!isRadioEnabled) {
|
|
return Symbols::airplane;
|
|
}
|
|
|
|
if (isConnected) {
|
|
return Symbols::bluetooth;
|
|
}
|
|
|
|
return Symbols::none;
|
|
}
|