Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Riakiotakis <kalast@gmail.com>2014-03-25 01:17:01 +0400
committerAntony Riakiotakis <kalast@gmail.com>2014-03-25 01:17:29 +0400
commit1c22ba1e0e728655462725127f19010387456b3b (patch)
treea8ff29bde735afacea84322aad2f30b14d44d39e /release/scripts
parent7bb84912efbaed72a0dd06ef6e4e8ed81df5529c (diff)
UI naming:
Change topology panel labels to "dyntopo"
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index 7fb3ef82255..f180e30f9dc 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