Why doesn’t QTreeView show newly added node to non-root node in QAbstractItemModel
I created a custom model for QTreeView. The complete minimal code to show the problem is below. If I add a new node to the root node, by clicking “Add Level 1”, it shows up. But if I add a new node to the second level by clicking “Add Level 2”, it does not show up. That node only shows up if I collapse the parent node and then expand it again. What part of my MyTreeModel
is wrong?