[Bf-extensions-cvs] [441f30bb] master: Collection Manager: Small cleanup. Task: T69577

Ryan Inch noreply at git.blender.org
Tue Dec 17 08:00:46 CET 2019


Commit: 441f30bbe3596c2a2c838596e4efcd99c68bf407
Author: Ryan Inch
Date:   Tue Dec 17 01:59:56 2019 -0500
Branches: master
https://developer.blender.org/rBA441f30bbe3596c2a2c838596e4efcd99c68bf407

Collection Manager: Small cleanup. Task: T69577

===================================================================

M	object_collection_manager/operators.py

===================================================================

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": [],



More information about the Bf-extensions-cvs mailing list