Apply Actions: Get Add to Queue back

This commit is contained in:
Martin Fietz 2016-02-02 17:10:21 +01:00
parent e5be9213d9
commit e82352512b
1 changed files with 5 additions and 5 deletions

View File

@ -34,11 +34,11 @@ public class EpisodesApplyActionFragment extends Fragment {
public String TAG = "EpisodeActionFragment";
public static final int ACTION_QUEUE = 0;
public static final int ACTION_MARK_PLAYED = 1;
public static final int ACTION_MARK_UNPLAYED = 2;
public static final int ACTION_DOWNLOAD = 4;
public static final int ACTION_REMOVE = 8;
public static final int ACTION_QUEUE = 1;
public static final int ACTION_MARK_PLAYED = 2;
public static final int ACTION_MARK_UNPLAYED = 4;
public static final int ACTION_DOWNLOAD = 8;
public static final int ACTION_REMOVE = 16;
public static final int ACTION_ALL = ACTION_QUEUE | ACTION_MARK_PLAYED | ACTION_MARK_UNPLAYED
| ACTION_DOWNLOAD | ACTION_REMOVE;