From 1ff28c2650a9145f0e71b85012e500703669871f Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Mon, 11 Jun 2018 18:51:15 +1200 Subject: Drivers UI Fix: Use uiLayoutSetContextFromBut() so that operators will work in the panel This fixes the problem where the "Show in Drivers Editor" button would not actually select and highlight the driver under the mouse. (TODO: The channels still aren't getting selected properly in the channels list, but at least the properties show correctly) --- source/blender/editors/space_graph/graph_buttons.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/blender/editors/space_graph/graph_buttons.c b/source/blender/editors/space_graph/graph_buttons.c index 706beb9784a..50a7d5618bc 100644 --- a/source/blender/editors/space_graph/graph_buttons.c +++ b/source/blender/editors/space_graph/graph_buttons.c @@ -1019,6 +1019,12 @@ static void graph_panel_drivers_popover(const bContext *C, Panel *pa) &ptr, prop, index, NULL, NULL, &driven, &special); + /* Hack: Force all buttons in this panel to be able to know the driver button + * this panel is getting spawned from, so that things like the "Open Drivers Editor" + * button will work. + */ + uiLayoutSetContextFromBut(layout, but); + /* Populate Panel - With a combination of the contents of the Driven and Driver panels */ if (fcu) { ID *id = ptr.id.data; -- cgit v1.2.3