mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 06:52:21 -04:00
fix more bugs in group count tree
This commit is contained in:
parent
8be318d749
commit
c16cb6ee9b
1 changed files with 2 additions and 2 deletions
|
@ -171,9 +171,9 @@ order by due""" % self._groupLimit(),
|
||||||
new += c[3]
|
new += c[3]
|
||||||
else:
|
else:
|
||||||
# set new string to tail
|
# set new string to tail
|
||||||
c[0] = c[0][1]
|
c[0] = c[0][1:]
|
||||||
children.append(c)
|
children.append(c)
|
||||||
children = self._groupChildren(children)
|
children = self._groupChildrenMain(children)
|
||||||
# tally up children counts
|
# tally up children counts
|
||||||
for ch in children:
|
for ch in children:
|
||||||
rev += ch[2]
|
rev += ch[2]
|
||||||
|
|
Loading…
Reference in a new issue