mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
only pick non_manual_entries after ignore date
This commit is contained in:
parent
ba57c8d0d0
commit
5414aebaa9
1 changed files with 1 additions and 1 deletions
|
@ -266,7 +266,7 @@ pub(crate) fn single_card_revlog_to_items(
|
|||
if entry.review_kind == RevlogReviewKind::Filtered && entry.ease_factor == 0 {
|
||||
continue;
|
||||
}
|
||||
if matches!(entry.button_chosen, 1..=4) {
|
||||
if matches!(entry.button_chosen, 1..=4) && entry.id.0 > ignore_revlogs_before.0 {
|
||||
non_manual_entries = Some(index);
|
||||
}
|
||||
if matches!(
|
||||
|
|
Loading…
Reference in a new issue