forked from len0rd/rockbox
[Feature] Supress voice during sleep timer shutdown
if show_shutdown_message == false and sleep timer is active talk will be disabled on shutdown Change-Id: Ia660e753700f3e283691f41797ef7a77a2d9a8d9
This commit is contained in:
parent
3554306617
commit
78c92c5ca8
3 changed files with 12 additions and 0 deletions
|
|
@ -306,6 +306,12 @@ static bool clean_shutdown(enum shutdown_type sd_type,
|
|||
{
|
||||
long msg_id = -1;
|
||||
|
||||
if (!global_settings.show_shutdown_message && get_sleep_timer_active())
|
||||
{
|
||||
talk_force_shutup();
|
||||
talk_disable(true);
|
||||
}
|
||||
|
||||
status_save();
|
||||
|
||||
#if CONFIG_CHARGING && !defined(HAVE_POWEROFF_WHILE_CHARGING)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue