fixed featured image back bug

This commit is contained in:
Ujjwal Agrawal 2018-05-28 14:16:29 +05:30
parent ae1cc86b03
commit 89418403f9

View file

@ -224,4 +224,10 @@ public class CategoryImagesListFragment extends DaggerFragment {
public ListAdapter getAdapter() {
return gridView.getAdapter();
}
@Override
public void onResume() {
gridView.setAdapter(gridAdapter);
super.onResume();
}
}