Skip to content

Commit

Permalink
fix merge mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
minacode committed Nov 14, 2023
1 parent 1d43387 commit 8ce4a19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/displayapp/screens/ApplicationList.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ namespace Pinetime {
// Increment this when more space is needed
static constexpr int nScreens = 2;

static constexpr std::array<Tile::Applications, appsPerScreen * nScreens> applications {{
std::array<Tile::Applications, appsPerScreen * nScreens> applications {{
{Symbols::stopWatch, Apps::StopWatch, true},
{Symbols::clock, Apps::Alarm, true},
{Symbols::hourGlass, Apps::Timer, true},
Expand All @@ -55,7 +55,7 @@ namespace Pinetime {
{"2", Apps::Twos, true},
{Symbols::shoe, Apps::Steps, true},
{Symbols::drum, Apps::Metronome, true},
{Symbols::map, Apps::Navigation, true},
{Symbols::map, Apps::Navigation, Applications::Screens::Navigation::IsAvailable(filesystem)},
}};

ScreenList<nScreens> screens;
Expand Down

0 comments on commit 8ce4a19

Please sign in to comment.