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:
authorLuca Bonavita <mindrones@gmail.com>2011-01-10 15:50:46 +0300
committerLuca Bonavita <mindrones@gmail.com>2011-01-10 15:50:46 +0300
commit3b413b6fa89093d0c0c5733ffa6e246d8c5edada (patch)
treec1a1817f173b10ac839e6db6f5235d28d905c733 /release
parentdab4ffa85be7c05224f128173cd8067c6100884d (diff)
[bugfix] Curve tilt button in 3d toolbar showing wrong shortcut
Added Ctrl-T to Curves Tilt button in the toolbar (edit mode), currently was reporting Alt-S for tilt (reported by Rickyx here http://www.kino3d.com/forum/viewtopic.php?f=21&t=8485&start=0) Also added the label "Tilt" to the tilt transform in the Curve > Control points header submenu, currently was just "Transform"
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/space_view3d.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py
index e60440d33ea..0b935b54643 100644
--- a/release/scripts/ui/space_view3d.py
+++ b/release/scripts/ui/space_view3d.py
@@ -1681,7 +1681,7 @@ class VIEW3D_MT_edit_curve_ctrlpoints(bpy.types.Menu):
edit_object = context.edit_object
if edit_object.type == 'CURVE':
- layout.operator("transform.transform").mode = 'TILT'
+ layout.operator("transform.transform", text="Tilt").mode = 'TILT'
layout.operator("curve.tilt_clear")
layout.operator("curve.separate")