mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
don't mark buried as suspended
This commit is contained in:
parent
d3e971fb3d
commit
363fbad65f
1 changed files with 1 additions and 1 deletions
|
@ -281,7 +281,7 @@ class StatusDelegate(QItemDelegate):
|
||||||
# in the the middle of a reset; return nothing so this row is not
|
# in the the middle of a reset; return nothing so this row is not
|
||||||
# rendered until we have a chance to reset the model
|
# rendered until we have a chance to reset the model
|
||||||
return
|
return
|
||||||
if c.queue < 0:
|
if c.queue == -1:
|
||||||
# custom render
|
# custom render
|
||||||
brush = QBrush(QColor(COLOUR_SUSPENDED))
|
brush = QBrush(QColor(COLOUR_SUSPENDED))
|
||||||
painter.save()
|
painter.save()
|
||||||
|
|
Loading…
Reference in a new issue