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:
authorRoel Spruit <roel@spruitje.nl>2004-06-24 02:11:57 +0400
committerRoel Spruit <roel@spruitje.nl>2004-06-24 02:11:57 +0400
commit8a0cd0bc97c4b33e1d74dbbc51ce8cc40c7ae0d1 (patch)
tree19cb8dca6df966c31122290bce46a15f3410a88d /source/blender/src/header_seq.c
parenteec72e3d4b4eb26b06e52678b67a7e605e8b1cae (diff)
Added another Sequence effect: the wellknown Glow effect.
Diffstat (limited to 'source/blender/src/header_seq.c')
-rw-r--r--source/blender/src/header_seq.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/src/header_seq.c b/source/blender/src/header_seq.c
index 861c2995413..ba7454387ef 100644
--- a/source/blender/src/header_seq.c
+++ b/source/blender/src/header_seq.c
@@ -209,6 +209,9 @@ static void do_seq_addmenu_effectmenu(void *arg, int event)
case 9:
add_sequence(SEQ_SWEEP);
break;
+ case 10:
+ add_sequence(SEQ_GLOW);
+ break;
}
}
@@ -229,6 +232,7 @@ static uiBlock *seq_addmenu_effectmenu(void *arg_unused)
uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Alpha Under", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 6, "");
uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Alpha Over Drop", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 7, "");
uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Sweep", 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, "");
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, "");