Skip to content

Commit

Permalink
Applied formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Oct 22, 2024
1 parent 59c0fc7 commit e636cc0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/apps/watchfaces/OswAppWatchfaceBinary.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

void OswAppWatchfaceBinary::drawWatch() {
OswHal* hal = OswHal::getInstance();

OswTime oswTime = { };
hal->getLocalTime(oswTime);

Expand Down
2 changes: 1 addition & 1 deletion src/apps/watchfaces/OswAppWatchfaceFitness.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ void dateDisplay() {

OswDate oswDate = { };
hal->getLocalDate(oswDate);

hal->gfx()->setTextSize(2);
hal->gfx()->setTextMiddleAligned();
hal->gfx()->setTextRightAligned();
Expand Down
2 changes: 1 addition & 1 deletion src/apps/watchfaces/OswAppWatchfaceFitnessAnalog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ void OswAppWatchfaceFitnessAnalog::drawDateFace(OswHal* hal, uint32_t hour, uint
} catch (const std::out_of_range& ignore) {
OSW_LOG_E("getWeekDay is out of range: ", ignore.what());
}

hal->gfx()->setTextSize(3);
hal->gfx()->setTextLeftAligned();
hal->gfx()->setTextCursor(CENTER_X - 70, 170);
Expand Down
2 changes: 1 addition & 1 deletion src/apps/watchfaces/OswAppWatchfaceNumerals.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ void OswAppWatchfaceNumerals::drawWatch() {

OswDate oswDate = { };
hal->getLocalDate(oswDate);

hal->gfx()->setTextCenterAligned();
hal->gfx()->setTextSize(1);
hal->gfx()->setTextColor(ui->getDangerColor());
Expand Down

0 comments on commit e636cc0

Please sign in to comment.