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>2008-03-23 20:56:44 +0300
committerPeter Schlaile <peter@schlaile.de>2008-03-23 20:56:44 +0300
commitc52695bafe477d8a8ee81ca37ba55e0bcd196fd7 (patch)
tree8d1c981c3b4e8e2a5dc8689b9165437cf1cf887b /source/blender/src/buttons_scene.c
parent096fcb3c8fab2fdf989fcb20e74f07ecbc318aaa (diff)
== Sequencer / ImBuf ==
Fixed a long standing bug in IMB_dupImBuf: refcounter should be better 0 within the duplicated ImBuf... Finally removed this strange STRIPELEM_META mumbo jumbo. On a way to asset management: made METAs behave like true input strips: * proxying should work * input filter options should work (including transform and color balance :) * IPOs now work in replace mode
Diffstat (limited to 'source/blender/src/buttons_scene.c')
-rw-r--r--source/blender/src/buttons_scene.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/src/buttons_scene.c b/source/blender/src/buttons_scene.c
index b2569b02fef..211e8fad5de 100644
--- a/source/blender/src/buttons_scene.c
+++ b/source/blender/src/buttons_scene.c
@@ -790,7 +790,8 @@ static void seq_panel_input()
if (last_seq->type == SEQ_MOVIE
|| last_seq->type == SEQ_IMAGE
- || last_seq->type == SEQ_SCENE) {
+ || last_seq->type == SEQ_SCENE
+ || last_seq->type == SEQ_META) {
uiDefButBitI(block, TOG, SEQ_USE_CROP,
B_SEQ_BUT_RELOAD, "Use Crop",
10,100,240,19, &last_seq->flag,
@@ -1229,7 +1230,8 @@ void sequencer_panels()
panels = SEQ_PANEL_EDITING;
- if (type == SEQ_MOVIE || type == SEQ_IMAGE || type == SEQ_SCENE) {
+ if (type == SEQ_MOVIE || type == SEQ_IMAGE || type == SEQ_SCENE
+ || type == SEQ_META) {
panels |= SEQ_PANEL_INPUT | SEQ_PANEL_FILTER | SEQ_PANEL_PROXY;
}