datawidget.py: raise AttributeError manually if item is graph, was not always raised; maybe problem of #52

This commit is contained in:
Dominik Demuth 2023-04-27 12:13:20 +02:00
parent 4e0ff4eddd
commit 35e89176be

View File

@ -342,6 +342,9 @@ class DataTree(QtWidgets.QTreeWidget):
_id = item.data(0, QtCore.Qt.UserRole)
if _id in ids:
try:
if item.parent() is None:
raise AttributeError
idx = item.parent().indexOfChild(item)
item.parent().takeChild(idx)
if _id in self._checked_sets: