forked from len0rd/rockbox
voice: splash_progress
Says "Loading x%" in previously unvoiced splash_progress Change-Id: I81780e3baf6ea8a8871a4433e1a733100b8cd5f6
This commit is contained in:
parent
a001d76afe
commit
c51ca1eeb5
5 changed files with 22 additions and 14 deletions
|
|
@ -238,6 +238,10 @@ static int browser(void* param)
|
|||
}
|
||||
if (stat->commit_step > 0)
|
||||
{
|
||||
/* (prevent redundant voicing by splash_progress */
|
||||
bool tmp = global_settings.talk_menu;
|
||||
global_settings.talk_menu = false;
|
||||
|
||||
if (lang_is_rtl())
|
||||
{
|
||||
splash_progress(stat->commit_step,
|
||||
|
|
@ -254,6 +258,7 @@ static int browser(void* param)
|
|||
stat->commit_step,
|
||||
tagcache_get_max_commit_step());
|
||||
}
|
||||
global_settings.talk_menu = tmp;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue