From 86954666907e04f8153631fda9bbe84c5509be3a Mon Sep 17 00:00:00 2001 From: Stypox Date: Wed, 29 May 2019 20:39:17 +0200 Subject: [PATCH] Make subscription long-press menu consistant in local sub list Inverted unsubscribe with share, since share has always been put after content-specific actions. --- .../newpipe/local/subscription/SubscriptionFragment.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/src/main/java/org/schabi/newpipe/local/subscription/SubscriptionFragment.java b/app/src/main/java/org/schabi/newpipe/local/subscription/SubscriptionFragment.java index 7d0fc3e61..d33fae67b 100644 --- a/app/src/main/java/org/schabi/newpipe/local/subscription/SubscriptionFragment.java +++ b/app/src/main/java/org/schabi/newpipe/local/subscription/SubscriptionFragment.java @@ -391,17 +391,17 @@ public class SubscriptionFragment extends BaseStateFragment { switch (i) { case 0: - shareChannel(selectedItem); + deleteChannel(selectedItem); break; case 1: - deleteChannel(selectedItem); + shareChannel(selectedItem); break; default: break;