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:
authorCampbell Barton <ideasman42@gmail.com>2015-01-08 12:14:42 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-01-08 12:16:22 +0300
commit8f0b6a1dd1622daabb71e184dc63552af0722dde (patch)
tree189554b0b8eba16ad97478f9693241e7c59a789e /source/blender/editors/animation/anim_ops.c
parent4305950fc0f2e60c1c5e6a3d6ce73fb59c485865 (diff)
Better check that preview seq is cleared on exit
Diffstat (limited to 'source/blender/editors/animation/anim_ops.c')
-rw-r--r--source/blender/editors/animation/anim_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/animation/anim_ops.c b/source/blender/editors/animation/anim_ops.c
index 1a043b4cccd..cbcbc8743f1 100644
--- a/source/blender/editors/animation/anim_ops.c
+++ b/source/blender/editors/animation/anim_ops.c
@@ -223,7 +223,7 @@ static int change_frame_modal(bContext *C, wmOperator *op, const wmEvent *event)
break;
}
- if (ret == OPERATOR_FINISHED) {
+ if (ret != OPERATOR_RUNNING_MODAL) {
change_frame_seq_preview_end(C);
}