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:
authorMatt Ebb <matt@mke3.net>2010-04-27 15:09:52 +0400
committerMatt Ebb <matt@mke3.net>2010-04-27 15:09:52 +0400
commitd9dbf99cae9e441c87b6934b6161b2beabe9b433 (patch)
tree2448c9d378d9c38625aa4e43c9b22a6d0e96a6d4 /source/blender/editors/space_node/space_node.c
parent505023d20670512fccebc91fa6516e26464d72c1 (diff)
Fix [#22173] Texture nodes update every mouse click
Notifier tweaks
Diffstat (limited to 'source/blender/editors/space_node/space_node.c')
-rw-r--r--source/blender/editors/space_node/space_node.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/space_node/space_node.c b/source/blender/editors/space_node/space_node.c
index bb568c49298..3bafcc25f6e 100644
--- a/source/blender/editors/space_node/space_node.c
+++ b/source/blender/editors/space_node/space_node.c
@@ -199,7 +199,8 @@ static void node_area_listener(ScrArea *sa, wmNotifier *wmn)
ED_area_tag_redraw(sa);
break;
case NC_NODE:
- ED_area_tag_refresh(sa);
+ if (wmn->action == NA_EDITED)
+ ED_area_tag_refresh(sa);
break;
}
}