Reputation: 299
I try to remove an item in a QTreeWidget. How can I remove it ? I just want to remove it, not to delete it and I don't find any method.
Upvotes: 0
Views: 265
Reputation: 370
if have the item QTreeWidgetItem
call setHidden(bool)
you can get the titem by calling topLevelItem(int index)
from the tree widget
Upvotes: 0