We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37210ea commit 7eaae53Copy full SHA for 7eaae53
editor/views.py
@@ -110,6 +110,8 @@ def remove(self):
110
items = self.tree_widget.selectedItems()
111
for item in items:
112
print("Removing", item.gameObject.name)
113
+ if self.loaded.Has(item.gameObject):
114
+ self.loaded.Remove(item.gameObject)
115
116
def add_item(self, gameObject, parent=None):
117
item = HierarchyItem(gameObject)
0 commit comments