diff --git a/object_collection_manager/__init__.py b/object_collection_manager/__init__.py index 0f1557454bc9b1c2b70e9854cf62641697d101a4..b20d1a2d09d95f8ea50b206f6acb2481eda7a221 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, 15, 2), + "version": (2, 15, 3), "blender": (2, 80, 0), "location": "View3D - Object Mode (Shortcut - M)", "warning": '', # used for warning icon and text in addons panel diff --git a/object_collection_manager/internals.py b/object_collection_manager/internals.py index 34e66737c8ed85c2b7d7af5bcb0635b8e59345fb..ceef1560b2a463f3400b4da8339163d24e2de92b 100644 --- a/object_collection_manager/internals.py +++ b/object_collection_manager/internals.py @@ -670,6 +670,7 @@ class CMSendReport(Operator): def draw(self, context): layout = self.layout + col = layout.column(align=True) first = True string = "" @@ -677,10 +678,10 @@ class CMSendReport(Operator): for num, char in enumerate(self.message): if char == "\n": if first: - layout.row().label(text=string, icon='ERROR') + col.row(align=True).label(text=string, icon='ERROR') first = False else: - layout.row().label(text=string, icon='BLANK1') + col.row(align=True).label(text=string, icon='BLANK1') string = "" continue @@ -688,9 +689,9 @@ class CMSendReport(Operator): string = string + char if first: - layout.row().label(text=string, icon='ERROR') + col.row(align=True).label(text=string, icon='ERROR') else: - layout.row().label(text=string, icon='BLANK1') + col.row(align=True).label(text=string, icon='BLANK1') def invoke(self, context, event): wm = context.window_manager