diff options
Diffstat (limited to 'apps/gui/gwps-common.c')
-rw-r--r-- | apps/gui/gwps-common.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |