Skip to content

Commit

Permalink
Defaulted the mapping of volume up and volume down to NONE.
Browse files Browse the repository at this point in the history
  • Loading branch information
jvl711 committed Sep 2, 2020
1 parent 4c3628a commit 35959f0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -337,14 +337,14 @@ public SageCommand getPreviousTrack()

public SageCommand getVolumeUp()
{
String key = preferences.getString(prefix + "_volume_up", SageCommand.VOLUME_UP.getKey());
String key = preferences.getString(prefix + "_volume_up", SageCommand.NONE.getKey());

return SageCommand.parseByKey(key);
}

public SageCommand getVolumeDown()
{
String key = preferences.getString(prefix + "_volume_down", SageCommand.VOLUME_DOWN.getKey());
String key = preferences.getString(prefix + "_volume_down", SageCommand.NONE.getKey());

return SageCommand.parseByKey(key);
}
Expand Down

0 comments on commit 35959f0

Please sign in to comment.