diff --git a/src/components/settings/Settings.h b/src/components/settings/Settings.h index 40fd2915..f65f95c1 100644 --- a/src/components/settings/Settings.h +++ b/src/components/settings/Settings.h @@ -155,6 +155,13 @@ namespace Pinetime { return settings.PTS.weatherEnable; }; + void SetInfineatShowAlarmStatus(bool show) { + if (show != settings.watchFaceInfineat.showAlarmStatus) { + settings.watchFaceInfineat.showAlarmStatus = show; + settingsChanged = true; + } + }; + void SetAppMenu(uint8_t menu) { appMenu = menu; };