diff --git a/src/fw/apps/system_apps/settings/settings_system.c b/src/fw/apps/system_apps/settings/settings_system.c index 6f290c50b..2ee91dcf4 100644 --- a/src/fw/apps/system_apps/settings/settings_system.c +++ b/src/fw/apps/system_apps/settings/settings_system.c @@ -517,8 +517,8 @@ static void prv_motion_sensitivity_menu_push(SettingsSystemData *data) { /////////////////////// static const char* s_debugging_titles[DebuggingItem_Count] = { - [DebuggingItemCoreDumpNow] = i18n_noop("Bug report now"), - [DebuggingItemCoreDumpShortcut] = i18n_noop("Bug shortcut"), + [DebuggingItemCoreDumpNow] = i18n_noop("CoreDump now"), + [DebuggingItemCoreDumpShortcut] = i18n_noop("CoreDump shortcut"), [DebuggingItemALSThreshold] = i18n_noop("ALS Threshold"), #if PLATFORM_ASTERIX [DebuggingItemMotionSensitivity] = i18n_noop("Motion Sensitivity"), diff --git a/src/fw/shell/normal/prefs.c b/src/fw/shell/normal/prefs.c index d937e9e2d..c45bf5529 100644 --- a/src/fw/shell/normal/prefs.c +++ b/src/fw/shell/normal/prefs.c @@ -78,7 +78,7 @@ static uint16_t s_backlight_intensity; // default pulled from BOARD_CONFIGs in s static bool s_backlight_motion_enabled = true; #define PREF_KEY_MOTION_SENSITIVITY "motionSensitivity" -static uint8_t s_motion_sensitivity = 100; // Default to maximum sensitivity (100%) +static uint8_t s_motion_sensitivity = 70; // Default to Medium-High #if CAPABILITY_HAS_DYNAMIC_BACKLIGHT #define PREF_KEY_BACKLIGHT_DYNAMIC_INTENSITY "lightDynamicIntensity"