From b51f7b6f36a351480dd2ec783826436ecd6912fd Mon Sep 17 00:00:00 2001 From: James Haggerty Date: Wed, 19 Oct 2022 10:24:02 +1100 Subject: Long press of mode on home screen goes to settings This also changes the default rotation so you don't see the settings screens. --- movement/movement_config.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'movement/movement_config.h') diff --git a/movement/movement_config.h b/movement/movement_config.h index 94456776..ef6fb6e8 100644 --- a/movement/movement_config.h +++ b/movement/movement_config.h @@ -39,4 +39,11 @@ const watch_face_t watch_faces[] = { #define MOVEMENT_NUM_FACES (sizeof(watch_faces) / sizeof(watch_face_t)) +/* Determines what face to go to from the first face if you've already set + * a mode long press to go to the first face in preferences, and + * excludes these faces from the normal rotation. + * Usually it makes sense to set this to the preferences face. + */ +#define MOVEMENT_SECONDARY_FACE_INDEX (MOVEMENT_NUM_FACES - 2) + #endif // MOVEMENT_CONFIG_H_ -- cgit v1.2.3 From 46ac8defdc94c1a998e553d880a542a1de7fd192 Mon Sep 17 00:00:00 2001 From: joeycastillo Date: Sun, 23 Oct 2022 14:59:03 -0500 Subject: disable settings hiding by default --- movement/movement_config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'movement/movement_config.h') diff --git a/movement/movement_config.h b/movement/movement_config.h index ef6fb6e8..19a501ea 100644 --- a/movement/movement_config.h +++ b/movement/movement_config.h @@ -44,6 +44,6 @@ const watch_face_t watch_faces[] = { * excludes these faces from the normal rotation. * Usually it makes sense to set this to the preferences face. */ -#define MOVEMENT_SECONDARY_FACE_INDEX (MOVEMENT_NUM_FACES - 2) +#define MOVEMENT_SECONDARY_FACE_INDEX 0 // or (MOVEMENT_NUM_FACES - 2) #endif // MOVEMENT_CONFIG_H_ -- cgit v1.2.3