Skip to content

Commit

Permalink
reduce volume step to 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
janbar committed Oct 26, 2020
1 parent eb77251 commit 191b76c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ if(IOS OR BUILD_SAILFISHOS)
set(QT_STATICPLUGIN ON CACHE BOOL "Build static plugins" FORCE)
endif()

set(APP_VERSION "4.4.2")
set(APP_VERSION_CODE 67)
set(APP_VERSION "4.4.3")
set(APP_VERSION_CODE 68)
set(APP_ID "io.github.janbar.noson")
set(APP_NAME "noson")

Expand Down
2 changes: 1 addition & 1 deletion gui/controls2/components/NowPlayingToolbar.qml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Item {
onValueChanged: {
if (Math.abs(value - inValue) >= 1.0) {
if (pressed && value > inValue + 5.0) {
value = inValue + 3.0; // loop on value changed
value = inValue + 1.0; // loop on value changed
} else {
volumeGroupSlider.inValue = player.volumeMaster = Math.round(value);
if (pressed)
Expand Down

0 comments on commit 191b76c

Please sign in to comment.