Low impact of webui volume leveler

Hi all,
at mine MusicBox-Webclient changing the volume has a very low impact on the played volume. It’s similar to pressing the volume down button on the radio twice…
Is there a way to make it more sensitive?

regards
raspi

Currently the code uses a linear volume scale, this doesn’t match how we hear sound, but is really easy to work with. Likely doing something like SQRT( current_slider_position / max_slider_position ) as suggested in https://forum.kde.org/viewtopic.php?f=19&t=42163#p60714 should do the trick.

In other words the webclient could switch to use such a scale instead of directly exposing the underlying linear scale.

And to correct myself, the common scale to use at least for end user apps is a log scale.