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:
authorJoseph Eagar <joeedh@gmail.com>2010-01-24 07:26:01 +0300
committerJoseph Eagar <joeedh@gmail.com>2010-01-24 07:26:01 +0300
commit351d239ac7cdc028549ae84f2ff1acd594570a07 (patch)
treed9f1c9bddaa75c3fdfaf4006163f95a1d56d3919 /source/blender/editors/space_graph
parent27db00bf1888770015ccbdbc8648540d21327603 (diff)
View3d transform was sending a too-general notifier to redraw, causing several animation editors and the property editor to redraw too, which can really slow things down. added a more specific ND_VIEW3D_TRANSFORM notifier to solve this.
Diffstat (limited to 'source/blender/editors/space_graph')
-rw-r--r--source/blender/editors/space_graph/space_graph.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/space_graph/space_graph.c b/source/blender/editors/space_graph/space_graph.c
index bd37eb996ce..4e12b850729 100644
--- a/source/blender/editors/space_graph/space_graph.c
+++ b/source/blender/editors/space_graph/space_graph.c
@@ -462,6 +462,8 @@ static void graph_listener(ScrArea *sa, wmNotifier *wmn)
sipo->flag |= SIPO_TEMP_NEEDCHANSYNC;
ED_area_tag_refresh(sa);
break;
+ case ND_VIEW3D_TRANSFORM:
+ break; /*do nothing*/
default: /* just redrawing the view will do */
ED_area_tag_redraw(sa);