Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
13werwolf13 committed Jan 12, 2022
1 parent 79273fe commit 4c58476
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/displayapp/screens/WatchFaceTerminal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ WatchFaceTerminal::~WatchFaceTerminal() {
lv_obj_clean(lv_scr_act());
}

bool WatchFaceTerminal::Refresh() {
/*bool WatchFaceTerminal::Refresh() {*/
void WatchFaceTerminal::Refresh() {
batteryPercentRemaining = batteryController.PercentRemaining();
if (batteryPercentRemaining.IsUpdated()) {
auto batteryPercent = batteryPercentRemaining.Get();
Expand Down Expand Up @@ -248,5 +249,5 @@ bool WatchFaceTerminal::Refresh() {
sprintf(stepString, "[STEP]#ee3377 %lu steps#", stepCount.Get());
lv_label_set_text(stepValue, stepString);
}
return running;
/*return running;*/
}
3 changes: 2 additions & 1 deletion src/displayapp/screens/WatchFaceTerminal.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ namespace Pinetime {
Controllers::MotionController& motionController);
~WatchFaceTerminal() override;

bool Refresh() override;
/*bool Refresh() override;*/
void Refresh() override;

void OnObjectEvent(lv_obj_t *pObj, lv_event_t i);

Expand Down

0 comments on commit 4c58476

Please sign in to comment.