Merge pull request #5271 from ByteHamster/fix-pref-name

Fix preference name of swipe actions
This commit is contained in:
ByteHamster 2021-07-14 19:46:30 +02:00 committed by GitHub
commit f73d64530a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,8 +31,8 @@ import it.xabaras.android.recyclerview.swipedecorator.RecyclerViewSwipeDecorator
public class SwipeActions extends ItemTouchHelper.SimpleCallback implements LifecycleObserver {
public static final String PREF_NAME = "SwipeActionsPrefs";
public static final String KEY_PREFIX_SWIPEACTIONS = "PrefSwipeActions6543";
public static final String KEY_PREFIX_NO_ACTION = "PrefNoSwipeAction6543";
public static final String KEY_PREFIX_SWIPEACTIONS = "PrefSwipeActions";
public static final String KEY_PREFIX_NO_ACTION = "PrefNoSwipeAction";
public static final List<SwipeAction> swipeActions = Collections.unmodifiableList(
Arrays.asList(new AddToQueueSwipeAction(), new RemoveFromInboxSwipeAction(),