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:
authorLukas Stockner <lukas.stockner@freenet.de>2017-05-07 21:32:51 +0300
committerLukas Stockner <lukas.stockner@freenet.de>2017-05-07 21:32:51 +0300
commitce28025eaf5014f16460dd1cb798ce5292087d94 (patch)
treed2f271c85d900859b3041216dcd18725bc5c91a4 /source/blender/makesrna/intern/rna_nodetree.c
parente518ea9b5ea0d2517aaf79594d2661a97c6b4a5e (diff)
Remove unused node socket flag that was added in the render pass commit
Diffstat (limited to 'source/blender/makesrna/intern/rna_nodetree.c')
-rw-r--r--source/blender/makesrna/intern/rna_nodetree.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index dfdd2ff293a..60b75fca689 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -6924,11 +6924,6 @@ static void rna_def_node_socket(BlenderRNA *brna)
RNA_def_property_ui_text(prop, "Enabled", "Enable the socket");
RNA_def_property_update(prop, NC_NODE | ND_DISPLAY, NULL);
- prop = RNA_def_property(srna, "is_virtual", PROP_BOOLEAN, PROP_NONE);
- RNA_def_property_boolean_sdna(prop, NULL, "flag", SOCK_VIRTUAL);
- RNA_def_property_ui_text(prop, "Virtual", "Socket is Virtual");
- RNA_def_property_update(prop, NC_NODE | ND_DISPLAY, NULL);
-
prop = RNA_def_property(srna, "link_limit", PROP_INT, PROP_NONE);
RNA_def_property_int_sdna(prop, NULL, "limit");
RNA_def_property_int_funcs(prop, NULL, "rna_NodeSocket_link_limit_set", NULL);