Skip to content

Commit 3203a11

Browse files
committedMar 13, 2025
Formatting changes
1 parent 1588696 commit 3203a11

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed
 

‎src/displayapp/screens/SystemInfo.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ std::unique_ptr<Screen> SystemInfo::CreateScreen2() {
180180

181181
extern int mallocFailedCount;
182182
extern int stackOverflowCount;
183+
183184
std::unique_ptr<Screen> SystemInfo::CreateScreen3() {
184185
lv_mem_monitor_t mon;
185186
lv_mem_monitor(&mon);

‎src/displayapp/screens/settings/SettingShakeThreshold.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,7 @@ void SettingShakeThreshold::UpdateSelected(lv_obj_t* object, lv_event_t event) {
127127
switch (event) {
128128
case LV_EVENT_VALUE_CHANGED: {
129129
if (object == calButton) {
130-
if (lv_btn_get_state(calButton) == LV_BTN_STATE_CHECKED_RELEASED
131-
&& currentCalibrationStep == CalibrationStep::NotCalibrated) {
130+
if (lv_btn_get_state(calButton) == LV_BTN_STATE_CHECKED_RELEASED && currentCalibrationStep == CalibrationStep::NotCalibrated) {
132131
lv_arc_set_value(positionArc, 0);
133132
currentCalibrationStep = CalibrationStep::GettingReady;
134133
vCalTime = xTaskGetTickCount();

‎src/displayapp/screens/settings/SettingShakeThreshold.h

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ namespace Pinetime::Controllers {
88
class Settings;
99
class MotionController;
1010
}
11+
1112
namespace Pinetime::System {
1213
class SystemTask;
1314
}

0 commit comments

Comments
 (0)