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 'io_scene_ms3d/ms3d_ui.py')
-rw-r--r--io_scene_ms3d/ms3d_ui.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/io_scene_ms3d/ms3d_ui.py b/io_scene_ms3d/ms3d_ui.py
index ee4b6b5c..46d8a500 100644
--- a/io_scene_ms3d/ms3d_ui.py
+++ b/io_scene_ms3d/ms3d_ui.py
@@ -1246,11 +1246,14 @@ class Ms3dMaterialProperties(PropertyGroup):
###############################################################################
-# http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=53355
+# http://www.blender.org/documentation/blender_python_api_2_65_10/bpy.types.UIList.html
class Ms3dGroupUILise(UIList):
def draw_item(self, context, layout, data, item, icon, active_data, active_propname, index):
- layout.label(item.name, icon_value=icon)
-
+ if self.layout_type in {'DEFAULT', 'COMPACT', }:
+ layout.label(text=item.name, icon_value=icon)
+ elif self.layout_type in {'GRID', }:
+ layout.alignment = 'CENTER'
+ layout.label(text="", icon_value=icon)
###############################################################################
class Ms3dMeshPanel(Panel):
@@ -1409,7 +1412,6 @@ class Ms3dGroupPanel(Panel):
row = layout.row()
- # http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=53355
row.template_list(
listtype_name='Ms3dGroupUILise',
dataptr=custom_data,