[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [24995] trunk/blender/release/scripts/ui: UI Scripts Bugfixes:

Joshua Leung aligorith at gmail.com
Sun Nov 29 03:14:35 CET 2009


Revision: 24995
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=24995
Author:   aligorith
Date:     2009-11-29 03:14:34 +0100 (Sun, 29 Nov 2009)

Log Message:
-----------
UI Scripts Bugfixes:

* Toolbar shows "Loopcut and Slide" instead of "Loopcut" now
* Follow Path "Offset" option was broken by one of the "use_*" prefix commits

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

Modified: trunk/blender/release/scripts/ui/properties_object_constraint.py
===================================================================
--- trunk/blender/release/scripts/ui/properties_object_constraint.py	2009-11-29 01:49:22 UTC (rev 24994)
+++ trunk/blender/release/scripts/ui/properties_object_constraint.py	2009-11-29 02:14:34 UTC (rev 24995)
@@ -258,7 +258,7 @@
         if con.use_fixed_position:
             col.prop(con, "offset_factor", text="Offset")
         else:
-            col.prop(con, "use_offset")
+            col.prop(con, "offset")
 
         row = layout.row()
         if wide_ui:

Modified: trunk/blender/release/scripts/ui/space_view3d_toolbar.py
===================================================================
--- trunk/blender/release/scripts/ui/space_view3d_toolbar.py	2009-11-29 01:49:22 UTC (rev 24994)
+++ trunk/blender/release/scripts/ui/space_view3d_toolbar.py	2009-11-29 02:14:34 UTC (rev 24995)
@@ -101,7 +101,7 @@
         col.label(text="Add:")
         col.operator("mesh.extrude_move")
         col.operator("mesh.subdivide")
-        col.operator("mesh.loopcut")
+        col.operator("mesh.loopcut_slide")
         col.operator("mesh.duplicate_move")
         col.operator("mesh.spin")
         col.operator("mesh.screw")





More information about the Bf-blender-cvs mailing list