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:
authorThomas Dinges <blender@dingto.org>2009-11-11 19:02:18 +0300
committerThomas Dinges <blender@dingto.org>2009-11-11 19:02:18 +0300
commitf76a6020c025ac5f8e9da0eea6be0d81bd1671a3 (patch)
treed9e95a32a95cb04eab70a5c65c7fbae8156955c5 /source/blender/editors/space_node
parent55a7e73b7d4a12cd60940ef2100e80860135629f (diff)
Nodes:
* Added properties operator to the View menu. * Added Notifier for Node Select Operator, so the new "Active Node" Panel gets refreshed.
Diffstat (limited to 'source/blender/editors/space_node')
-rw-r--r--source/blender/editors/space_node/node_select.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/editors/space_node/node_select.c b/source/blender/editors/space_node/node_select.c
index e082f3797c1..67c7915694d 100644
--- a/source/blender/editors/space_node/node_select.c
+++ b/source/blender/editors/space_node/node_select.c
@@ -140,6 +140,9 @@ static int node_select_exec(bContext *C, wmOperator *op)
}
ED_region_tag_redraw(ar);
+
+ /* send notifiers */
+ WM_event_add_notifier(C, NC_NODE|ND_NODE_SELECT, NULL);
/* allow tweak event to work too */
return OPERATOR_FINISHED|OPERATOR_PASS_THROUGH;