Fix shortcut to talk time: force enqueuing otherwise it interrupts itself right away when speaking the shortcut entry again.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31465 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
2403f38c1f
commit
c17b0af89e
1 changed files with 3 additions and 2 deletions
|
@ -478,9 +478,10 @@ int do_shortcut_menu(void *ignored)
|
||||||
break;
|
break;
|
||||||
case SHORTCUT_TIME:
|
case SHORTCUT_TIME:
|
||||||
#if CONFIG_RTC
|
#if CONFIG_RTC
|
||||||
if (sc->u.timedata.talktime)
|
if (sc->u.timedata.talktime) {
|
||||||
talk_timedate();
|
talk_timedate();
|
||||||
else
|
talk_force_enqueue_next();
|
||||||
|
} else
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
char timer_buf[10];
|
char timer_buf[10];
|
||||||
|
|
Loading…
Reference in a new issue