Skip to content

Commit 7288301

Browse files
committed
add menue item
1 parent 4c58476 commit 7288301

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/displayapp/screens/settings/SettingWatchFace.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace {
1414
}
1515
}
1616

17-
constexpr std::array<const char*, 3> SettingWatchFace::options;
17+
constexpr std::array<const char*, 4> SettingWatchFace::options;
1818

1919
SettingWatchFace::SettingWatchFace(Pinetime::Applications::DisplayApp* app, Pinetime::Controllers::Settings& settingsController)
2020
: Screen(app), settingsController {settingsController} {

src/displayapp/screens/settings/SettingWatchFace.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ namespace Pinetime {
2020
void UpdateSelected(lv_obj_t* object, lv_event_t event);
2121

2222
private:
23-
static constexpr std::array<const char*, 3> options = {" Digital face", " Analog face", " PineTimeStyle"};
23+
static constexpr std::array<const char*, 4> options = {" Digital face", " Analog face", " PineTimeStyle", " Terminal"};
2424
Controllers::Settings& settingsController;
2525

2626
lv_obj_t* cbOption[options.size()];

0 commit comments

Comments
 (0)