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:
Diffstat (limited to 'object_collection_manager/internals.py')
-rw-r--r--object_collection_manager/internals.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/object_collection_manager/internals.py b/object_collection_manager/internals.py
index 34e66737..ceef1560 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