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:
authorPhilipp Oeser <info@graphics-engineer.com>2019-05-27 19:31:02 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2019-07-04 19:03:27 +0300
commiteed19d9f456c5ae6416c4d62d75a009f3a34bcc7 (patch)
tree3c747f43089633015bcb619f1a2d35358763c15f /source/blender/editors/space_node
parentab71991a7882d440a88723c389e72e94e5bba274 (diff)
Fix T64253: missing update when moving nodegroup input/output sockets up or down
Reviewers: brecht Maniphest Tasks: T64253 Differential Revision: https://developer.blender.org/D4959
Diffstat (limited to 'source/blender/editors/space_node')
-rw-r--r--source/blender/editors/space_node/node_edit.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/space_node/node_edit.c b/source/blender/editors/space_node/node_edit.c
index a5755ae43c6..08768df9d1d 100644
--- a/source/blender/editors/space_node/node_edit.c
+++ b/source/blender/editors/space_node/node_edit.c
@@ -2418,6 +2418,7 @@ static int ntree_socket_move_exec(bContext *C, wmOperator *op)
}
}
+ ntree->update |= NTREE_UPDATE_GROUP;
ntreeUpdateTree(CTX_data_main(C), ntree);
snode_notify(C, snode);