Skip to content
Snippets Groups Projects
Commit 6f49528c authored by Ryan Inch's avatar Ryan Inch
Browse files

Collection Manager: Fix reload scripts bug. Task: T69577

parent 88c3fc87
No related branches found
No related tags found
No related merge requests found
...@@ -22,7 +22,7 @@ bl_info = { ...@@ -22,7 +22,7 @@ bl_info = {
"name": "Collection Manager", "name": "Collection Manager",
"description": "Manage collections and their objects", "description": "Manage collections and their objects",
"author": "Ryan Inch", "author": "Ryan Inch",
"version": (2,7,4), "version": (2,7,5),
"blender": (2, 80, 0), "blender": (2, 80, 0),
"location": "View3D - Object Mode (Shortcut - M)", "location": "View3D - Object Mode (Shortcut - M)",
"warning": '', # used for warning icon and text in addons panel "warning": '', # used for warning icon and text in addons panel
...@@ -35,6 +35,7 @@ if "bpy" in locals(): ...@@ -35,6 +35,7 @@ if "bpy" in locals():
import importlib import importlib
importlib.reload(internals) importlib.reload(internals)
importlib.reload(operator_utils)
importlib.reload(operators) importlib.reload(operators)
importlib.reload(qcd_move_widget) importlib.reload(qcd_move_widget)
importlib.reload(qcd_operators) importlib.reload(qcd_operators)
...@@ -44,6 +45,7 @@ if "bpy" in locals(): ...@@ -44,6 +45,7 @@ if "bpy" in locals():
else: else:
from . import internals from . import internals
from . import operator_utils
from . import operators from . import operators
from . import qcd_move_widget from . import qcd_move_widget
from . import qcd_operators from . import qcd_operators
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment