Skip to content

Commit

Permalink
apps: Restore app list order
Browse files Browse the repository at this point in the history
The build-time selection PR updated the order, this restores what it was
before.
  • Loading branch information
FintasticMan committed Nov 29, 2023
1 parent f3d4f04 commit e89e5e4
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions src/displayapp/Apps.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#pragma once
#include <cstddef>

namespace Pinetime {
namespace Applications {
enum class Apps {
Expand Down Expand Up @@ -49,17 +50,17 @@ namespace Pinetime {
static constexpr size_t Count = sizeof...(As);
};

using UserAppTypes = TypeList<Apps::Alarm,
using UserAppTypes = TypeList<Apps::StopWatch,
Apps::Alarm,
Apps::Timer,
Apps::Steps,
Apps::HeartRate,
Apps::Paint,
Apps::Metronome,
Apps::Music,
Apps::Navigation,
Apps::Paint,
Apps::Paddle,
Apps::Steps,
Apps::StopWatch,
Apps::Timer,
Apps::Twos
Apps::Twos,
Apps::Metronome,
Apps::Navigation
/*
Apps::Weather,
Apps::Motion
Expand Down

0 comments on commit e89e5e4

Please sign in to comment.