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:
authorJoerg Mueller <nexyon@gmail.com>2012-02-06 21:24:51 +0400
committerJoerg Mueller <nexyon@gmail.com>2012-02-06 21:24:51 +0400
commit10985c38d6e3122f8fcd58443d4fb09edfb84315 (patch)
treeada9f0aa2422b1572cfc616905f2d0ce2a5d7f61 /source/blender/blenloader
parent8f3170a17c270dd8a02f9b3bf2a971a65cab67ae (diff)
Bugfix for part 1 of [#30052].
Removed the if, because it's also in the function called.
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/readfile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 6bd12e8d3f6..5f737ea4e53 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -4769,8 +4769,8 @@ static void lib_link_scene(FileData *fd, Main *main)
(void)marker;
#endif
- if(sce->ed)
- seq_update_muting(sce->ed);
+ seq_update_muting(sce->ed);
+ seq_update_sound_bounds_all(sce);
if(sce->nodetree) {
lib_link_ntree(fd, &sce->id, sce->nodetree);