diff options
| author | FintasticMan <finlay.neon.kid@gmail.com> | 2023-11-29 00:46:10 +0100 |
|---|---|---|
| committer | FintasticMan <finlay.neon.kid@gmail.com> | 2023-11-29 17:17:16 +0100 |
| commit | e89e5e4d66dcfb45c1f5137cd854f49b925de513 (patch) | |
| tree | e1870b9c5457551393914b22f445722b0d2b4a6e /src | |
| parent | f3d4f04827fcfe65d6647271d84590d76ce2115b (diff) | |
apps: Restore app list order
The build-time selection PR updated the order, this restores what it was
before.
Diffstat (limited to 'src')
| -rw-r--r-- | src/displayapp/Apps.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/displayapp/Apps.h b/src/displayapp/Apps.h index 0dd8157e..f65fd2cf 100644 --- a/src/displayapp/Apps.h +++ b/src/displayapp/Apps.h @@ -1,5 +1,6 @@ #pragma once #include <cstddef> + namespace Pinetime { namespace Applications { enum class Apps { @@ -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 |
