Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Inch <mythologylover75@gmail.com>2019-12-17 09:59:56 +0300
committerRyan Inch <mythologylover75@gmail.com>2019-12-17 09:59:56 +0300
commit441f30bbe3596c2a2c838596e4efcd99c68bf407 (patch)
tree3f7844c9102db2d4a343abc08589200a98487ae2
parent0a0edc8903f2f0eb1fb695189021b6ffa4ab4a36 (diff)
Collection Manager: Small cleanup. Task: T69577
-rw-r--r--object_collection_manager/operators.py12
1 files changed, 5 insertions, 7 deletions
diff --git a/object_collection_manager/operators.py b/object_collection_manager/operators.py
index 05614625..43427efd 100644
--- a/object_collection_manager/operators.py
+++ b/object_collection_manager/operators.py
@@ -321,8 +321,6 @@ class CMUnExcludeAllOperator(Operator):
for x, item in enumerate(layer_collections.values()):
item["ptr"].exclude = not exclude_all_history[x]
- print([not i for i in exclude_all_history])
-
else:
for item in reversed(list(layer_collections.values())):
if item["ptr"].exclude:
@@ -1141,11 +1139,11 @@ class CMNewCollectionOperator(Operator):
phantom_history = {"view_layer": "",
"initial_state": {},
- "exclude_history": [],
- "select_history": [],
- "hide_history": [],
- "disable_history": [],
- "render_history": [],
+ "exclude_history": {},
+ "select_history": {},
+ "hide_history": {},
+ "disable_history": {},
+ "render_history": {},
"exclude_all_history": [],
"select_all_history": [],