Animation of QItemDelegates
Unsolved
General and Desktop
-
I want to briefly highlight rows that have been programmatically inserted in a QTreeView -- something like briefly flashing those rows to draw attention to them. How can I do this?
-
When you've a custom model just return an appropriate color for Qt::Background role.
-
@Christian-Ehrlicher Thanks for your reply. I was hoping there is a solution entirely on the view side without having to touch the model, maybe with QAbstractAnimation.
-
Hi,
One alternative could be to use QRubberBand and draw it on top of the lines/cells you are interested in.