Skip to content

Commit

Permalink
Merge branch 'fix_todo_changed_count'
Browse files Browse the repository at this point in the history
  • Loading branch information
simonpoole committed Dec 12, 2024
2 parents 410a7eb + 3dde86a commit efbf5e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ protected View createView(@Nullable ViewGroup container) {
boolean changed = t.hasBeenChanged();
if (t instanceof Todo) {
customCount++;
if (changed) {
if (changed || t.isClosed()) { //changed is only true when skipped
customChangedCount++;
}
} else if (t instanceof OsmoseBug) {
Expand Down

0 comments on commit efbf5e7

Please sign in to comment.