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:
authorJoshua Leung <aligorith@gmail.com>2011-04-05 15:04:00 +0400
committerJoshua Leung <aligorith@gmail.com>2011-04-05 15:04:00 +0400
commitbbf82877cf75bb01ce284e908bb411ae6277e55d (patch)
tree7c5b3fd321aa419f6461b8ddac2bd519ed7f34b4 /release
parent165a40e7425baa8ffe9acc2b972014c9702e84c4 (diff)
Bugfix [#26792] blender crash when scaling action strip in NLA
Two part bug: Part 1) NLA Editor menu was calling wrong operator Part 2) r35829 broke NLA scaling, since it only checked that the transform mode used was allowed in the Action Editor (probably confused by Part 1)
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_nla.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_nla.py b/release/scripts/startup/bl_ui/space_nla.py
index e0b5d842179..5c8e8cd9173 100644
--- a/release/scripts/startup/bl_ui/space_nla.py
+++ b/release/scripts/startup/bl_ui/space_nla.py
@@ -188,7 +188,7 @@ class NLA_MT_edit_transform(bpy.types.Menu):
layout.column()
layout.operator("transform.translate", text="Grab/Move")
layout.operator("transform.transform", text="Extend").mode = 'TIME_EXTEND'
- # layout.operator("transform.resize", text="Scale") # crashes [#26792]
+ layout.operator("transform.transform", text="Scale").mode= 'TIME_SCALE'
if __name__ == "__main__": # only for live edit.
bpy.utils.register_module(__name__)