Skip to content

Commit

Permalink
imp - Just go to next song on idle
Browse files Browse the repository at this point in the history
---

We need to just go to the next/previous song instead of playing in idle mode.

---

Type: imp
Breaking: False
Doc Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed May 30, 2024
1 parent e26e6bb commit 52d82c9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
4 changes: 0 additions & 4 deletions BassBoom.Cli/CliBase/Player.cs
Original file line number Diff line number Diff line change
Expand Up @@ -159,14 +159,10 @@ private static void HandleKeypressIdleMode(ConsoleKeyInfo keystroke, Screen play
case ConsoleKey.B:
PlayerControls.SeekBeginning();
PlayerControls.PreviousSong();
playerThread = new(HandlePlay);
PlayerControls.Play();
break;
case ConsoleKey.N:
PlayerControls.SeekBeginning();
PlayerControls.NextSong();
playerThread = new(HandlePlay);
PlayerControls.Play();
break;
case ConsoleKey.I:
PlayerControls.ShowSongInfo();
Expand Down
4 changes: 0 additions & 4 deletions BassBoom.Cli/CliBase/Radio.cs
Original file line number Diff line number Diff line change
Expand Up @@ -148,13 +148,9 @@ private static void HandleKeypressIdleMode(ConsoleKeyInfo keystroke, Screen play
break;
case ConsoleKey.B:
RadioControls.PreviousStation();
playerThread = new(HandlePlay);
RadioControls.Play();
break;
case ConsoleKey.N:
RadioControls.NextStation();
playerThread = new(HandlePlay);
RadioControls.Play();
break;
case ConsoleKey.I:
RadioControls.ShowStationInfo();
Expand Down

0 comments on commit 52d82c9

Please sign in to comment.