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:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-06-17 13:54:56 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-06-17 13:55:24 +0300
commitb50de0f8b75b9f7af62e09528635f6a9fdbb07cd (patch)
treec61b90aa523413997804987e1dc1618fd21e8d37 /source/blender/depsgraph/intern/depsgraph_tag.cc
parent96e9caba6ef190b9f24f212d444ea60ec6defc4a (diff)
Fix T65651: Crash when changing audio strip source file
Diffstat (limited to 'source/blender/depsgraph/intern/depsgraph_tag.cc')
-rw-r--r--source/blender/depsgraph/intern/depsgraph_tag.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph_tag.cc b/source/blender/depsgraph/intern/depsgraph_tag.cc
index c5743e77d9a..1c26e6fecd5 100644
--- a/source/blender/depsgraph/intern/depsgraph_tag.cc
+++ b/source/blender/depsgraph/intern/depsgraph_tag.cc
@@ -223,6 +223,7 @@ void depsgraph_tag_to_component_opcode(const ID *id,
case ID_RECALC_AUDIO_VOLUME:
case ID_RECALC_AUDIO_MUTE:
case ID_RECALC_AUDIO_LISTENER:
+ case ID_RECALC_AUDIO:
*component_type = NodeType::AUDIO;
break;
case ID_RECALC_ALL:
@@ -656,6 +657,8 @@ const char *DEG_update_tag_as_string(IDRecalcFlag flag)
return "AUDIO_MUTE";
case ID_RECALC_AUDIO_LISTENER:
return "AUDIO_LISTENER";
+ case ID_RECALC_AUDIO:
+ return "AUDIO";
case ID_RECALC_ALL:
return "ALL";
}