correcitons

This commit is contained in:
Eve C 2024-10-16 17:01:53 +02:00
parent 39241889be
commit e16c8f8bab

View file

@ -124,6 +124,18 @@ namespace Pinetime {
return settings.watchFaceInfineat.showSideCover; return settings.watchFaceInfineat.showSideCover;
}; };
void SetInfineatShowAlarmStatus(bool show) {
if (show != settings.watchFaceInfineat.showAlarmStatus) {
settings.watchFaceInfineat.showAlarmStatus = show;
settingsChanged = true;
}
};
bool GetInfineatShowAlarmStatus() const {
return settings.watchFaceInfineat.showAlarmStatus;
};
void SetInfineatColorIndex(int index) { void SetInfineatColorIndex(int index) {
if (index != settings.watchFaceInfineat.colorIndex) { if (index != settings.watchFaceInfineat.colorIndex) {
settings.watchFaceInfineat.colorIndex = index; settings.watchFaceInfineat.colorIndex = index;
@ -155,13 +167,6 @@ namespace Pinetime {
return settings.PTS.weatherEnable; return settings.PTS.weatherEnable;
}; };
void SetInfineatShowAlarmStatus(bool show) {
if (show != settings.watchFaceInfineat.showAlarmStatus) {
settings.watchFaceInfineat.showAlarmStatus = show;
settingsChanged = true;
}
};
void SetAppMenu(uint8_t menu) { void SetAppMenu(uint8_t menu) {
appMenu = menu; appMenu = menu;
}; };