Skip to content

Commit

Permalink
added functionality recently added
Browse files Browse the repository at this point in the history
  • Loading branch information
tayal007 authored Nov 12, 2016
1 parent 0aa7f8c commit c8da4d0
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/beatboxer/BeatBoxerController.java
Original file line number Diff line number Diff line change
Expand Up @@ -443,6 +443,13 @@ else if (playlist.getId()==-1){
catch(Exception e){
;
}
} else if (playlist.getId() == -2) {
try {
Show sh = new Show();
nowPlayingListView.setItems(sh.ShowRecentlyAdded());
BeatBoxer.nowPlaying = sh.ShowRecentlyAdded();
} catch (Exception e) {
;
}
else{
try{
Expand Down Expand Up @@ -709,4 +716,4 @@ public void handle(MouseEvent click) {
});
}

}
}

0 comments on commit c8da4d0

Please sign in to comment.