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:
authorAlexander N <alpha-beta-release@gmx.net>2013-02-10 22:03:39 +0400
committerAlexander N <alpha-beta-release@gmx.net>2013-02-10 22:03:39 +0400
commit620993a65f3087e45aca67badfb09c7464604137 (patch)
tree0eb77927a219963375b4801692667668a264464f /io_scene_ms3d/ms3d_ui.py
parent7639368f18430c38aef18ce6af5c33e06a22ae82 (diff)
fixed missing model comment.
and tiny other things e.g. fix: sum of weights sometimes reaches only 99% instead of 100% mod: come # comments - year to 2013 mod: ui of importer - joint size bit closer to other item
Diffstat (limited to 'io_scene_ms3d/ms3d_ui.py')
-rw-r--r--io_scene_ms3d/ms3d_ui.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/io_scene_ms3d/ms3d_ui.py b/io_scene_ms3d/ms3d_ui.py
index 291d9197..ee4b6b5c 100644
--- a/io_scene_ms3d/ms3d_ui.py
+++ b/io_scene_ms3d/ms3d_ui.py
@@ -25,7 +25,7 @@
# ##### BEGIN COPYRIGHT BLOCK #####
#
-# initial script copyright (c)2011,2012 Alexander Nussbaumer
+# initial script copyright (c)2011-2013 Alexander Nussbaumer
#
# ##### END COPYRIGHT BLOCK #####
@@ -357,11 +357,10 @@ class Ms3dImportOperator(Operator, ImportHelper):
if (self.use_animation):
box.prop(self, 'rotation_mode', icon=Ms3dUi.ICON_ROTATION_MODE,
expand=False)
- box.prop(self, 'use_joint_size')
+ flow = box.column_flow()
+ flow.prop(self, 'use_joint_size')
if (self.use_joint_size):
- col = box.column()
- row = col.row()
- row.prop(self, 'joint_size')
+ flow.prop(self, 'joint_size')
box.prop(self, 'use_joint_to_bones')
if (self.use_joint_to_bones):
box.box().label(ms3d_str['LABEL_NAME_JOINT_TO_BONES'],