Skip to content

Commit

Permalink
Newsfeed fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tretdm committed Apr 28, 2023
1 parent 4c537d9 commit b2ee57a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@ public void createAdapter(Context ctx, ArrayList<WallPost> wallPosts) {
newsfeedAdapter.notifyDataSetChanged();
}
((ProgressLayout) view.findViewById(R.id.progress_layout)).setVisibility(View.GONE);
view.findViewById(R.id.newsfeed_layout).setVisibility(View.VISIBLE);
if(OvkApplication.isTablet) {
view.findViewById(R.id.newsfeed_layout).setVisibility(View.VISIBLE);
}
((SwipeRefreshLayout) view.findViewById(R.id.newsfeed_swipe_layout)).setVisibility(View.VISIBLE);
}

Expand Down

0 comments on commit b2ee57a

Please sign in to comment.