[Bf-blender-cvs] [1c22ba1] master: UI naming:

Antony Riakiotakis noreply at git.blender.org
Mon Mar 24 22:17:45 CET 2014


Commit: 1c22ba1e0e728655462725127f19010387456b3b
Author: Antony Riakiotakis
Date:   Mon Mar 24 23:17:01 2014 +0200
https://developer.blender.org/rB1c22ba1e0e728655462725127f19010387456b3b

UI naming:

Change topology panel labels to "dyntopo"

===================================================================

M	release/scripts/startup/bl_ui/space_view3d_toolbar.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index 7fb3ef8..f180e30 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -1213,9 +1213,9 @@ class VIEW3D_PT_tools_brush_curve(Panel, View3DPaintPanel):
         row.operator("brush.curve_preset", icon='NOCURVE', text="").shape = 'MAX'
 
 
-class VIEW3D_PT_sculpt_topology(Panel, View3DPaintPanel):
+class VIEW3D_PT_sculpt_dyntopo(Panel, View3DPaintPanel):
     bl_category = "Tools"
-    bl_label = "Topology"
+    bl_label = "Dyntopo"
     bl_options = {'DEFAULT_CLOSED'}
 
     @classmethod
@@ -1231,9 +1231,9 @@ class VIEW3D_PT_sculpt_topology(Panel, View3DPaintPanel):
         brush = settings.brush
 
         if context.sculpt_object.use_dynamic_topology_sculpting:
-            layout.operator("sculpt.dynamic_topology_toggle", icon='X', text="Disable Dynamic")
+            layout.operator("sculpt.dynamic_topology_toggle", icon='X', text="Disable Dyntopo")
         else:
-            layout.operator("sculpt.dynamic_topology_toggle", icon='SCULPT_DYNTOPO', text="Enable Dynamic")
+            layout.operator("sculpt.dynamic_topology_toggle", icon='SCULPT_DYNTOPO', text="Enable Dyntopo")
 
         col = layout.column()
         col.active = context.sculpt_object.use_dynamic_topology_sculpting




More information about the Bf-blender-cvs mailing list