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:
authorJeroen Bakker <jeroen@blender.org>2021-03-24 16:27:41 +0300
committerJeroen Bakker <jeroen@blender.org>2021-03-24 16:30:22 +0300
commitc06042afc6c6cbfef52078b44f2b10cf5488bb27 (patch)
tree29037d12ea1f4f5473136bbb39a0f42befd2e05d /source/blender/compositor/intern/COM_ExecutionSystem.cc
parentb2246d25a29aaf81ff63b98cae3c096194a6a0fa (diff)
Spelling: getRenderPriotrity -> getRenderPriority
Diffstat (limited to 'source/blender/compositor/intern/COM_ExecutionSystem.cc')
-rw-r--r--source/blender/compositor/intern/COM_ExecutionSystem.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/compositor/intern/COM_ExecutionSystem.cc b/source/blender/compositor/intern/COM_ExecutionSystem.cc
index b28ee79c359..df97b8079b2 100644
--- a/source/blender/compositor/intern/COM_ExecutionSystem.cc
+++ b/source/blender/compositor/intern/COM_ExecutionSystem.cc
@@ -214,7 +214,7 @@ void ExecutionSystem::execute_groups(CompositorPriority priority)
{
for (ExecutionGroup *execution_group : m_groups) {
if (execution_group->isOutputExecutionGroup() &&
- execution_group->getRenderPriotrity() == priority) {
+ execution_group->getRenderPriority() == priority) {
execution_group->execute(this);
}
}