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:
authorJohnny Matthews <johnny.matthews@gmail.com>2004-08-03 23:36:17 +0400
committerJohnny Matthews <johnny.matthews@gmail.com>2004-08-03 23:36:17 +0400
commit248404e7a2ec74678b38f83831786e82bdcc91cc (patch)
tree4020a4a2afbddb11e491f668c0a7401f6fa1cb2f /source/blender/src/header_seq.c
parentd1bbaf18ca2d23f1f7c3a6c0e990d14cce898e07 (diff)
This commit changes the sweep effect to be called 'Wipe' in both UI and in backend variable naming.
Diffstat (limited to 'source/blender/src/header_seq.c')
-rw-r--r--source/blender/src/header_seq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/header_seq.c b/source/blender/src/header_seq.c
index b2919454344..893b5f7c68e 100644
--- a/source/blender/src/header_seq.c
+++ b/source/blender/src/header_seq.c
@@ -207,7 +207,7 @@ static void do_seq_addmenu_effectmenu(void *arg, int event)
add_sequence(SEQ_PLUGIN);
break;
case 9:
- add_sequence(SEQ_SWEEP);
+ add_sequence(SEQ_WIPE);
break;
case 10:
add_sequence(SEQ_GLOW);
@@ -231,7 +231,7 @@ static uiBlock *seq_addmenu_effectmenu(void *arg_unused)
uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Alpha Over", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 5, "");
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, "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, "");
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, "");