Skip to content
This repository has been archived by the owner on May 6, 2024. It is now read-only.

Commit

Permalink
Show Done button when only 1 whats new item is available
Browse files Browse the repository at this point in the history
- LEARNER-3620
  • Loading branch information
miankhalid committed Dec 20, 2017
1 parent 5176f06 commit d534d9d
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,10 @@ public void onClick(View view) {
getActivity().finish();
}
});

if (noOfPages == 1) {
binding.doneBtn.setVisibility(View.VISIBLE);
}
}

private void initProgressIndicator() {
Expand Down

0 comments on commit d534d9d

Please sign in to comment.