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:
authorJacques Lucke <mail@jlucke.com>2020-01-09 19:07:27 +0300
committerJacques Lucke <mail@jlucke.com>2020-01-09 19:07:27 +0300
commit9b920938bbca806d978cc6d24ecffc3b4a9b0e6d (patch)
treea79861df2e878c16f2b9a5439938e985108f1fe7 /release
parent7ac8f61dc1455e8015c7e28c48a943bbe0efc7ec (diff)
Fix T71630: Add Delete Tracks to Edit menu in NLA editor
Reviewers: billreynish, lichtwerk Differential Revision: https://developer.blender.org/D6550
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_nla.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_nla.py b/release/scripts/startup/bl_ui/space_nla.py
index 28b67c93666..4ecc4e7fdd9 100644
--- a/release/scripts/startup/bl_ui/space_nla.py
+++ b/release/scripts/startup/bl_ui/space_nla.py
@@ -167,6 +167,7 @@ class NLA_MT_edit(Menu):
layout.operator("nla.duplicate", text="Linked Duplicate").linked = True
layout.operator("nla.split")
layout.operator("nla.delete")
+ layout.operator("nla.tracks_delete")
layout.separator()
layout.operator("nla.mute_toggle")