Compare commits
1 Commits
master
...
csv_broken
Author | SHA1 | Date | |
---|---|---|---|
35e89176be |
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user