We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 965eea2 + 0ebd01e commit eee1172Copy full SHA for eee1172
app/src/main/java/org/schabi/newpipe/util/PlayButtonHelper.java
@@ -50,6 +50,10 @@ public static void initPlaylistControlClickListener(
50
});
51
52
// long click listener
53
+ playlistControlBinding.playlistCtrlPlayAllButton.setOnLongClickListener(view -> {
54
+ NavigationHelper.enqueueOnPlayer(activity, fragment.getPlayQueue(), PlayerType.MAIN);
55
+ return true;
56
+ });
57
playlistControlBinding.playlistCtrlPlayPopupButton.setOnLongClickListener(view -> {
58
NavigationHelper.enqueueOnPlayer(activity, fragment.getPlayQueue(), PlayerType.POPUP);
59
return true;
0 commit comments