fix problem with spark buttons behaving weirdly
This commit is contained in:
parent
bf4d0bb722
commit
7cc1ed9844
4 changed files with 6 additions and 6 deletions
|
|
@ -288,7 +288,7 @@ public class NotificationsFragment extends SFragment implements
|
|||
|
||||
notifications.setPairedItem(position, newViewData);
|
||||
|
||||
adapter.updateItemWithNotify(position, newViewData, true);
|
||||
adapter.updateItemWithNotify(position, newViewData, false);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -325,7 +325,7 @@ public class NotificationsFragment extends SFragment implements
|
|||
|
||||
notifications.setPairedItem(position, newViewData);
|
||||
|
||||
adapter.updateItemWithNotify(position, newViewData, true);
|
||||
adapter.updateItemWithNotify(position, newViewData, false);
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -312,7 +312,7 @@ public class TimelineFragment extends SFragment implements
|
|||
.setReblogged(reblog)
|
||||
.createStatusViewData();
|
||||
statuses.setPairedItem(actual.second, newViewData);
|
||||
adapter.changeItem(actual.second, newViewData, true);
|
||||
adapter.changeItem(actual.second, newViewData, false);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -347,7 +347,7 @@ public class TimelineFragment extends SFragment implements
|
|||
.setFavourited(favourite)
|
||||
.createStatusViewData();
|
||||
statuses.setPairedItem(actual.second, newViewData);
|
||||
adapter.changeItem(actual.second, newViewData, true);
|
||||
adapter.changeItem(actual.second, newViewData, false);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue