Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Limit the displayed review count to 99999 instead of 1000 #5326

Merged
merged 1 commit into from
Jun 14, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public class StudyOptionsFragment extends Fragment implements Toolbar.OnMenuItem
private static final int CONTENT_EMPTY = 2;

// Threshold at which the total number of new cards is truncated by libanki
private static final int NEW_CARD_COUNT_TRUNCATE_THRESHOLD = 1000;
private static final int NEW_CARD_COUNT_TRUNCATE_THRESHOLD = 99999;

/**
* Preferences
Expand Down
2 changes: 1 addition & 1 deletion AnkiDroid/src/main/java/com/ichi2/libanki/Sched.java
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public Sched() {
public Sched(Collection col) {
mCol = col;
mQueueLimit = 50;
mReportLimit = 1000;
mReportLimit = 99999;
mReps = 0;
mHaveQueues = false;
_updateCutoff();
Expand Down
2 changes: 1 addition & 1 deletion AnkiDroid/src/main/java/com/ichi2/libanki/SchedV2.java
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public SchedV2(Collection col) {
super();
mCol = col;
mQueueLimit = 50;
mReportLimit = 1000;
mReportLimit = 99999;
mDynReportLimit = 99999;
mReps = 0;
mToday = null;
Expand Down