From 5b3f1ad200077f62b9d09a61131bc340024f3b58 Mon Sep 17 00:00:00 2001 From: jpirnay Date: Mon, 11 May 2026 18:38:48 +0200 Subject: [PATCH] Move to submenu --- src/SettingsList.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/SettingsList.h b/src/SettingsList.h index 02f7417b..1cc2f1ed 100644 --- a/src/SettingsList.h +++ b/src/SettingsList.h @@ -228,21 +228,22 @@ inline const std::vector list = { .withSubmenu(StrId::STR_BTN_POWER), SettingInfo::Toggle(StrId::STR_TILT_PAGE_TURN, &CrossPointSettings::tiltPageTurn, "tiltPageTurn", StrId::STR_CAT_CONTROLS) - .withSubcategory(StrId::STR_TILT_PAGE_TURN) + .withSubmenu(StrId::STR_TILT_PAGE_TURN) .withDeviceTarget(SettingDeviceTarget::X3), SettingInfo::Enum(StrId::STR_TILT_STABILIZATION, &CrossPointSettings::tiltStabilization, {StrId::STR_TILT_MODE_RAW, StrId::STR_TILT_MODE_SMOOTH, StrId::STR_TILT_MODE_KALMAN}, "tiltStabilization", StrId::STR_CAT_CONTROLS) + .withSubmenu(StrId::STR_TILT_PAGE_TURN) .withDeviceTarget(SettingDeviceTarget::X3), SettingInfo::Enum(StrId::STR_DIR_RIGHT, &CrossPointSettings::tiltPositiveAction, {StrId::STR_NONE_OPT, StrId::STR_NEXT_PAGE, StrId::STR_PREV_PAGE}, "tiltPositiveAction", StrId::STR_CAT_CONTROLS) - .withSubcategory(StrId::STR_TILT_PAGE_TURN) + .withSubmenu(StrId::STR_TILT_PAGE_TURN) .withDeviceTarget(SettingDeviceTarget::X3), SettingInfo::Enum(StrId::STR_DIR_LEFT, &CrossPointSettings::tiltNegativeAction, {StrId::STR_NONE_OPT, StrId::STR_NEXT_PAGE, StrId::STR_PREV_PAGE}, "tiltNegativeAction", StrId::STR_CAT_CONTROLS) - .withSubcategory(StrId::STR_TILT_PAGE_TURN) + .withSubmenu(StrId::STR_TILT_PAGE_TURN) .withDeviceTarget(SettingDeviceTarget::X3), #undef BTN_ACT_OPTIONS