[Bf-extensions-cvs] [6f49528c] master: Collection Manager: Fix reload scripts bug. Task: T69577

Ryan Inch noreply at git.blender.org
Wed Apr 15 07:11:20 CEST 2020


Commit: 6f49528c8364dab5dd8ec4fbca3e424a617c1ab3
Author: Ryan Inch
Date:   Wed Apr 15 01:10:29 2020 -0400
Branches: master
https://developer.blender.org/rBA6f49528c8364dab5dd8ec4fbca3e424a617c1ab3

Collection Manager: Fix reload scripts bug. Task: T69577

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

M	object_collection_manager/__init__.py

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

diff --git a/object_collection_manager/__init__.py b/object_collection_manager/__init__.py
index 47dc183e..36e4f033 100644
--- a/object_collection_manager/__init__.py
+++ b/object_collection_manager/__init__.py
@@ -22,7 +22,7 @@ bl_info = {
     "name": "Collection Manager",
     "description": "Manage collections and their objects",
     "author": "Ryan Inch",
-    "version": (2,7,4),
+    "version": (2,7,5),
     "blender": (2, 80, 0),
     "location": "View3D - Object Mode (Shortcut - M)",
     "warning": '',  # used for warning icon and text in addons panel
@@ -35,6 +35,7 @@ if "bpy" in locals():
     import importlib
 
     importlib.reload(internals)
+    importlib.reload(operator_utils)
     importlib.reload(operators)
     importlib.reload(qcd_move_widget)
     importlib.reload(qcd_operators)
@@ -44,6 +45,7 @@ if "bpy" in locals():
 
 else:
     from . import internals
+    from . import operator_utils
     from . import operators
     from . import qcd_move_widget
     from . import qcd_operators



More information about the Bf-extensions-cvs mailing list