diff options
author | Dana Conrad <dconrad@fastmail.com> | 2021-04-03 13:54:03 -0500 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2021-04-05 11:09:32 +0000 |
commit | 1aed109fa8c2a9e5a788295f523642bc71269351 (patch) | |
tree | 2f164d9346e7aa487d277afa28ac18c47bed5c66 /apps/menus | |
parent | 962d412917a5cbb923847163a2beafaa3301dd8f (diff) |
Add ability to always have autolock on
Tested on ErosQ
Added a setting in the Advanced Softlock menu to always
have autolock on, rather than having to "arm" it with the
softlock button. Lock/Unlock still works the same with
this on, but when the screen turns off, the device always
ends up in the locked state. Requires Autolock On to be
set as well, and the normal Autolock functionality is
unchanged with this off.
Caveat: the power/softlock button must be pressed
at least once after powering on the device or enabling the
feature. After that, it should consistently always "arm"
the autolock.
Added feature to manual in
manual/configure_rockbox/system_options.tex. Also updated
some labels I had changed in the Advanced Key Lock menu
and added information for Disable All Lock Notifications
in a previous commit. Shared items also updated in
manual/configure_rockbox/display_options.tex for selective
backlight.
Change-Id: I09dc6814bee803e40c7088157e1fe9d01d5f3474
Diffstat (limited to 'apps/menus')
-rw-r--r-- | apps/menus/settings_menu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/menus/settings_menu.c b/apps/menus/settings_menu.c index a5daad01ce..0b7516f749 100644 --- a/apps/menus/settings_menu.c +++ b/apps/menus/settings_menu.c @@ -89,6 +89,7 @@ int mask = global_settings.bt_selective_softlock_actions_mask; {ID2P(LANG_ACTION_SKIP), SEL_ACTION_SKIP}, #ifdef HAVE_BACKLIGHT {ID2P(LANG_ACTION_AUTOLOCK_ON), SEL_ACTION_AUTOLOCK}, + {ID2P(LANG_ACTION_ALWAYSAUTOLOCK), SEL_ACTION_ALWAYSAUTOLOCK}, #endif #if defined(HAVE_TOUCHPAD) || defined(HAVE_TOUCHSCREEN) {ID2P(LANG_ACTION_DISABLE_TOUCH), SEL_ACTION_NOTOUCH}, |