From 44023eb4304e5a70d741fd8accb72feed4613661 Mon Sep 17 00:00:00 2001 From: Johannes Rauh Date: Sat, 23 Jun 2018 11:27:18 +0200 Subject: Volume adjustment in LISTS ignored AUDIOHW_SETTING values AUDIOHW_SETTING() defines number of decimals and step size. This is taken into account in sound menu but ignored in lists (had been recently fixed in WPS). This was not a problem so far since all drivers used 0 decimal places and step size equal 1. Change-Id: I8807d5b6f2f3d412a2bc5769905bd776553ece0b --- apps/gui/list.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'apps/gui/list.c') diff --git a/apps/gui/list.c b/apps/gui/list.c index ee4684233f..29145eb3ca 100644 --- a/apps/gui/list.c +++ b/apps/gui/list.c @@ -682,10 +682,11 @@ bool gui_synclist_do_button(struct gui_synclist * lists, #ifdef HAVE_VOLUME_IN_LIST case ACTION_LIST_VOLUP: - global_settings.volume += 2; - /* up two because the falthrough brings it down one */ + global_settings.volume += sound_steps(SOUND_VOLUME); + setvol(); + return true; case ACTION_LIST_VOLDOWN: - global_settings.volume--; + global_settings.volume -= sound_steps(SOUND_VOLUME); setvol(); return true; #endif -- cgit v1.2.3