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:
authorJulian Eisel <eiseljulian@gmail.com>2015-10-29 22:50:30 +0300
committerJulian Eisel <eiseljulian@gmail.com>2015-10-29 22:50:30 +0300
commitcd1d6d777057c9914c70d7c7c72eb0025615e5ea (patch)
tree33aefdee20dd14f23135308bb5e2504efbb3752d
parent286f5ffa595cbdf9bb73c223ece4234aab38bd87 (diff)
Fix T46632: Graph editor frame navigation shortcuts not working
-rw-r--r--source/blender/editors/space_graph/space_graph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_graph/space_graph.c b/source/blender/editors/space_graph/space_graph.c
index 7cbd310301c..2f1f72bcf78 100644
--- a/source/blender/editors/space_graph/space_graph.c
+++ b/source/blender/editors/space_graph/space_graph.c
@@ -688,7 +688,7 @@ void ED_spacetype_ipo(void)
art = MEM_callocN(sizeof(ARegionType), "spacetype graphedit region");
art->regionid = RGN_TYPE_UI;
art->prefsizex = 200;
- art->keymapflag = ED_KEYMAP_UI;
+ art->keymapflag = ED_KEYMAP_UI | ED_KEYMAP_FRAMES;
art->listener = graph_region_listener;
art->init = graph_buttons_area_init;
art->draw = graph_buttons_area_draw;