diff options
author | Tom Hennen <tom.hennen@gmail.com> | 2013-09-09 21:29:53 -0400 |
---|---|---|
committer | Tom Hennen <tom.hennen@gmail.com> | 2013-09-09 21:29:53 -0400 |
commit | e1fc800d088a4b150deb3aff072cda7af8da8ca7 (patch) | |
tree | 0c1073fda0016ab017195d6dd18edb002983e896 /res | |
parent | 34a5e62339928d9a6353ba966cf9841e1719b570 (diff) | |
download | AntennaPod-e1fc800d088a4b150deb3aff072cda7af8da8ca7.zip |
Moved move to top/bottom menu options to EpisodesFragement from FeedItemMenuHandler so that we can ensure the user was actually in the 'Queue' dropdown when they opened the menu. Also, move to top now only shows up if the item isn't already at the top, similarly, for move to bottom, it only shows up if the item isn't already at the bottom.
Diffstat (limited to 'res')
-rw-r--r-- | res/menu/feeditem.xml | 10 | ||||
-rw-r--r-- | res/values/ids.xml | 2 |
2 files changed, 2 insertions, 10 deletions
diff --git a/res/menu/feeditem.xml b/res/menu/feeditem.xml index 644b71081..505de1d4a 100644 --- a/res/menu/feeditem.xml +++ b/res/menu/feeditem.xml @@ -67,15 +67,5 @@ android:showAsAction="collapseActionView" android:title="@string/support_label"> </item> - <item - android:id="@+id/move_to_top_item" - android:showAsAction="collapseActionView" - android:title="@string/move_to_top_label"> - </item> - <item - android:id="@+id/move_to_bottom_item" - android:showAsAction="collapseActionView" - android:title="@string/move_to_bottom_label"> - </item> </menu>
\ No newline at end of file diff --git a/res/values/ids.xml b/res/values/ids.xml index 5356cd119..c1d80d375 100644 --- a/res/values/ids.xml +++ b/res/values/ids.xml @@ -15,6 +15,8 @@ <item name="organize_queue_item" type="id"/> <item name="drag_handle" type="id"/> <item name="skip_episode_item" type="id"/> + <item name="move_to_top_item" type="id"/> + <item name="move_to_bottom_item" type="id"/> <item name="image_disk_cache_key" type="id"/> <item name="imageloader_key" type="id"/> <item name="notification_gpodnet_sync_error" type="id"/> |