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:
authorPeter Schlaile <peter@schlaile.de>2006-11-17 00:36:04 +0300
committerPeter Schlaile <peter@schlaile.de>2006-11-17 00:36:04 +0300
commit1a36a9080c16a3fc25d0349a04a626bd94cc80f8 (patch)
treeec93fbcf290a5a3b8097470ded0769ed9329d432 /source/blender/src/header_seq.c
parent85615f7ac865c98a500c5653fea0dbcfd654a59d (diff)
== Sequencer ==
Fixes Bug #5239 reported by Anders Gudmundson: - Sequencer eats memory like popcorn with metastrips - Crash on gaps in metastrips Both were introduces by my last patch that added "Speed Control". I also forgot to add "Speed Control" and "Color" to the "Add"-menu. (Simply haven't noticed, I use the spacebar all the time...)
Diffstat (limited to 'source/blender/src/header_seq.c')
-rw-r--r--source/blender/src/header_seq.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/source/blender/src/header_seq.c b/source/blender/src/header_seq.c
index 4f38650a5fd..0b6cdb4f14f 100644
--- a/source/blender/src/header_seq.c
+++ b/source/blender/src/header_seq.c
@@ -235,6 +235,12 @@ static void do_seq_addmenu_effectmenu(void *arg, int event)
case 11:
add_sequence(SEQ_TRANSFORM);
break;
+ case 12:
+ add_sequence(SEQ_COLOR);
+ break;
+ case 13:
+ add_sequence(SEQ_SPEED);
+ break;
}
}
@@ -257,6 +263,9 @@ static uiBlock *seq_addmenu_effectmenu(void *arg_unused)
uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Wipe", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 9, "");
uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Glow", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 10, "");
uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Transform", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 11, "");
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Transform", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 11, "");
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Color Generator", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 12, "");
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Speed Control", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 13, "");
uiDefBut(block, SEPR, 0, "", 0, yco-=6, menuwidth, 6, NULL, 0.0, 0.0, 0, 0, "");
uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Plugin...", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 8, "");