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:
authorNicholas Bishop <nicholasbishop@gmail.com>2009-01-24 09:08:46 +0300
committerNicholas Bishop <nicholasbishop@gmail.com>2009-01-24 09:08:46 +0300
commit744e38cc74c8b72e0afbba30deb70748acdfe117 (patch)
tree9151a763f115cc08b6ad248fa278988ea4c9fed8 /source/blender/editors/space_sequencer
parent8543337597a1a50f69e45ea1bda7c7cad091cd03 (diff)
Added back a line removed in r18642 so the macro CFRA can access scene.
Diffstat (limited to 'source/blender/editors/space_sequencer')
-rw-r--r--source/blender/editors/space_sequencer/sequencer_edit.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c
index 73268864844..57d3a9722f4 100644
--- a/source/blender/editors/space_sequencer/sequencer_edit.c
+++ b/source/blender/editors/space_sequencer/sequencer_edit.c
@@ -2336,6 +2336,7 @@ static int sequencer_cut_exec(bContext *C, wmOperator *op)
static int sequencer_cut_invoke(bContext *C, wmOperator *op, wmEvent *event)
{
+ Scene *scene = CTX_data_scene(C);
ARegion *ar= CTX_wm_region(C);
View2D *v2d= UI_view2d_fromcontext(C);