- updated the Tcl commands PlotAll and PlotObjects to have a parameter that control if the objects are to be plotted or not on canvas; it serve as a disable/enable

This commit is contained in:
Marius Stanciu
2020-04-13 20:28:39 +03:00
committed by Marius
parent 1b14e9d451
commit 742180d6e3
5 changed files with 54 additions and 19 deletions

View File

@@ -912,6 +912,11 @@ class ObjectCollection(QtCore.QAbstractItemModel):
raise
def get_list(self):
"""
Will return a list of all objects currently opened.
:return:
"""
obj_list = []
for group in self.root_item.child_items:
for item in group.child_items: