Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/fw/apps/system_apps/settings/settings_system.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down
2 changes: 1 addition & 1 deletion src/fw/shell/normal/prefs.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading