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:
authorRoland Hess <me@harkyman.com>2007-11-30 16:43:12 +0300
committerRoland Hess <me@harkyman.com>2007-11-30 16:43:12 +0300
commit905d7126dd798e2603a75a14837ad668b7277b06 (patch)
tree41c3f0f26ae970d3e43133ba16d08bda9ce38a9f /source/blender/src/header_seq.c
parent11c2a6754bd54085c4fa4be9ea66e006f4079c69 (diff)
Fixing small header oversight -- Remap Paths was masked from movie type strips. It was still available via hotkey, but if you didn't know it, it wasn't in the header menus to see. Now it is.
Diffstat (limited to 'source/blender/src/header_seq.c')
-rw-r--r--source/blender/src/header_seq.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/source/blender/src/header_seq.c b/source/blender/src/header_seq.c
index 4075371108b..e26ab4a157a 100644
--- a/source/blender/src/header_seq.c
+++ b/source/blender/src/header_seq.c
@@ -481,10 +481,12 @@ static uiBlock *seq_editmenu(void *arg_unused)
}
-/* if (last_seq != NULL && last_seq->type == SEQ_MOVIE) {
- uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Set Filter Y|F", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 8, "");
+ if (last_seq != NULL && last_seq->type == SEQ_MOVIE) {
+/* uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Set Filter Y|F", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 8, ""); */
+ uiDefBut(block, SEPR, 0, "", 0, yco-=6, menuwidth, 6, NULL, 0.0, 0.0, 0, 0, "");
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Remap Paths...|Shift R", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 15, "");
}
-*/
+
uiDefBut(block, SEPR, 0, "", 0, yco-=6, menuwidth, 6, NULL, 0.0, 0.0, 0, 0, "");
uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Make Meta Strip...|M", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 2, "");