From 98fa3913f9618a09269e9ab39abb9a53274f5676 Mon Sep 17 00:00:00 2001 From: Jonathan Gordon Date: Thu, 9 Oct 2008 23:15:16 +0000 Subject: change the %mv timeout to 1s which works better, also change the string to show "v" instead of .:| if its not used as a conditional git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18759 a1c6a512-1295-4272-9138-f99709370657 --- apps/gui/gwps-common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/gui/gwps-common.c b/apps/gui/gwps-common.c index dd941e8061..18c7098511 100644 --- a/apps/gui/gwps-common.c +++ b/apps/gui/gwps-common.c @@ -1390,8 +1390,8 @@ static const char *get_token_value(struct gui_wps *gwps, #endif case WPS_TOKEN_BUTTON_VOLUME: if (data->button_time_volume && - TIME_BEFORE(current_tick, data->button_time_volume+2*HZ/3)) - return ".:|"; + TIME_BEFORE(current_tick, data->button_time_volume+HZ)) + return "v"; return NULL; default: return NULL; -- cgit v1.2.3