mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2025-12-01 12:31:45 +00:00
pressing the button of an itemlist item selected the wrong item if
'display only episodes' was turned on
This commit is contained in:
@ -189,7 +189,7 @@ public class ItemlistFragment extends SherlockListFragment implements
|
||||
public void onClick(View v) {
|
||||
int index = getListView().getPositionForView(v);
|
||||
if (index != ListView.INVALID_POSITION) {
|
||||
FeedItem newSelectedItem = items.get(index);
|
||||
FeedItem newSelectedItem = fila.getItem(index);
|
||||
if (newSelectedItem != selectedItem) {
|
||||
if (mActionMode != null) {
|
||||
mActionMode.finish();
|
||||
|
||||
Reference in New Issue
Block a user