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:
authorJoshua Leung <aligorith@gmail.com>2013-07-01 18:14:21 +0400
committerJoshua Leung <aligorith@gmail.com>2013-07-01 18:14:21 +0400
commit7a304c2d1173a2c20ba69dc61b56dadbf35fd90f (patch)
treeb9ed5f9321885334e03a301a05578f15609ef84b /source/blender/editors/space_graph
parent64bc3ce89adeaedc606ab465c51f0f1cf3bc907b (diff)
Bugfix [#35744] FCurve select changes on Graph Editor Resize
Selection state of F-Curves is lost when resizing the Graph Editor. The problem was that SIPO_TEMP_NEEDCHANSYNC was getting set in the graph_init() callback, which gets called everytime the view resizes, and not just the very first time this happens. However, setting this flag forces the selection state to the updated/pulled from the scene data. In the past, it was necessary to set this flag so that we could force F-Curve colors to get initialised correctly. However, things probably changed at some point, so this behaviour is no longer needed. At worst now, opening a new graph editor may not show F-Curve selection correctly synced with the viewport, though that's easily worked around by reselecting whatever it is in the 3d view.
Diffstat (limited to 'source/blender/editors/space_graph')
-rw-r--r--source/blender/editors/space_graph/space_graph.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/editors/space_graph/space_graph.c b/source/blender/editors/space_graph/space_graph.c
index 6e38f236d01..765c61b5bed 100644
--- a/source/blender/editors/space_graph/space_graph.c
+++ b/source/blender/editors/space_graph/space_graph.c
@@ -189,7 +189,10 @@ static void graph_init(struct wmWindowManager *UNUSED(wm), ScrArea *sa)
}
/* force immediate init of any invalid F-Curve colors */
- sipo->flag |= SIPO_TEMP_NEEDCHANSYNC;
+ /* XXX: but, don't do SIPO_TEMP_NEEDCHANSYNC (i.e. channel select state sync)
+ * as this is run on each region resize; setting this here will cause selection
+ * state to be lost on area/region resizing. [#35744]
+ */
ED_area_tag_refresh(sa);
}