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:
authorAlexander Gavrilov <angavrilov@gmail.com>2018-10-25 10:29:17 +0300
committerAlexander Gavrilov <angavrilov@gmail.com>2018-10-25 10:32:32 +0300
commitc25fa615d44db8575449fb6a8fff54af4d96ad92 (patch)
treeb2db17ffebc3f13b1e89b834117fcd4ca192e844 /source/blender/depsgraph/intern/builder/deg_builder_nodes.h
parent1a827e0564b7465320467b8eb508ed073ae5781f (diff)
Depsgraph: don't lose the update tag on rebuild for op nodes with a name.
This fixes a missing update when clearing the Text On Curve (follow_curve) option of a text object.
Diffstat (limited to 'source/blender/depsgraph/intern/builder/deg_builder_nodes.h')
-rw-r--r--source/blender/depsgraph/intern/builder/deg_builder_nodes.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/depsgraph/intern/builder/deg_builder_nodes.h b/source/blender/depsgraph/intern/builder/deg_builder_nodes.h
index 4d4939b4dd3..1e4ef9718e0 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder_nodes.h
+++ b/source/blender/depsgraph/intern/builder/deg_builder_nodes.h
@@ -244,6 +244,7 @@ protected:
ID *id_orig;
eDepsNode_Type component_type;
eDepsOperation_Code opcode;
+ const char *name;
};
vector<SavedEntryTag> saved_entry_tags_;