[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [25608] trunk/blender/release/scripts/ui/ properties_data_modifier.py: * More small modifier tweaks.

Thomas Dinges dingto at gmx.de
Tue Dec 29 13:53:31 CET 2009


Revision: 25608
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=25608
Author:   dingto
Date:     2009-12-29 13:53:30 +0100 (Tue, 29 Dec 2009)

Log Message:
-----------
* More small modifier tweaks. 

Modified Paths:
--------------
    trunk/blender/release/scripts/ui/properties_data_modifier.py

Modified: trunk/blender/release/scripts/ui/properties_data_modifier.py
===================================================================
--- trunk/blender/release/scripts/ui/properties_data_modifier.py	2009-12-29 12:04:37 UTC (rev 25607)
+++ trunk/blender/release/scripts/ui/properties_data_modifier.py	2009-12-29 12:53:30 UTC (rev 25608)
@@ -614,7 +614,7 @@
         
         if wide_ui:
             col = split.column()
-        col.label()
+            col.label()
         col.prop(md, "use_rim")
         col.prop(md, "use_even_offset")
         col.prop(md, "use_quality_normals")
@@ -646,14 +646,15 @@
     def UV_PROJECT(self, layout, ob, md, wide_ui):
         if ob.type == 'MESH':
             split = layout.split()
+
             col = split.column()
-            col.label(text="UV Layer:")
-            col.prop_object(md, "uv_layer", ob.data, "uv_textures", text="")
+            col.label(text="Image:")
+            col.prop(md, "image", text="")
 
             if wide_ui:
                 col = split.column()
-            col.label(text="Image:")
-            col.prop(md, "image", text="")
+            col.label(text="UV Layer:")
+            col.prop_object(md, "uv_layer", ob.data, "uv_textures", text="")
 
             split = layout.split()
             col = split.column()





More information about the Bf-blender-cvs mailing list