1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-07-02 01:53:19 +00:00

Make subscription long-press menu consistant in local sub list

Inverted unsubscribe with share, since share has always been put after content-specific actions.
This commit is contained in:
Stypox 2019-05-29 20:39:17 +02:00
parent bdb1be9967
commit 8695466690
No known key found for this signature in database
GPG Key ID: 4BDF1B40A49FDD23

View File

@ -391,17 +391,17 @@ public class SubscriptionFragment extends BaseStateFragment<List<SubscriptionEnt
if (context == null || context.getResources() == null || getActivity() == null) return;
final String[] commands = new String[]{
context.getResources().getString(R.string.share),
context.getResources().getString(R.string.unsubscribe)
context.getResources().getString(R.string.unsubscribe),
context.getResources().getString(R.string.share)
};
final DialogInterface.OnClickListener actions = (dialogInterface, i) -> {
switch (i) {
case 0:
shareChannel(selectedItem);
deleteChannel(selectedItem);
break;
case 1:
deleteChannel(selectedItem);
shareChannel(selectedItem);
break;
default:
break;