Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Touchscreen: make volume bars respect volume step increment

Change-Id: I449b305ec4070e61f3619f8b7ac01a74c3ac59a6

+2
+2
apps/gui/wps.c
··· 190 190 { 191 191 const int min_vol = sound_min(SOUND_VOLUME); 192 192 const int max_vol = sound_max(SOUND_VOLUME); 193 + const int step_vol = sound_steps(SOUND_VOLUME); 193 194 global_settings.volume = (offset * (max_vol - min_vol)) / 100; 194 195 global_settings.volume += min_vol; 196 + global_settings.volume -= (global_settings.volume % step_vol); 195 197 setvol(); 196 198 } 197 199 return ACTION_TOUCHSCREEN;