Skip to content
This repository has been archived by the owner on May 7, 2023. It is now read-only.

Commit

Permalink
fix manual advance not working at all
Browse files Browse the repository at this point in the history
  • Loading branch information
0x5066 committed Dec 28, 2022
1 parent 9a7549c commit 9db954e
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions scripts/actioninfo.m
Original file line number Diff line number Diff line change
Expand Up @@ -150,14 +150,9 @@
int v = getCurCfgVal();
SongTicker.hide();
InfoTicker.show();
if (on){
InfoTicker.setText("Repeat: ON");
RepeatBtn.setXmlParam("downImage", "reppa");
}
else{
InfoTicker.setText("Repeat: OFF");
RepeatBtn.setXmlParam("downImage", "repp");
}
if (v == 0) InfoTicker.setText("Repeat: Off");
else if (v > 0) InfoTicker.setText("Repeat: Playlist");
else if (v < 0) InfoTicker.setText("Repeat: Track");
}

ShuffleBtn.onToggle(boolean on) {
Expand Down

0 comments on commit 9db954e

Please sign in to comment.