Fix T68317: Panel "A" key doesn't collapse subpanels properly

We need to only collapse or expand the first panel under the cursor
rather than all of them. Note that whether the parent panel or
the subpanel is first depends on the order of the uiBlocks in the
region's list.
This commit is contained in:
Hans Goudey 2020-08-27 14:22:28 -05:00
parent 714dbf273c
commit a8766de5d5
Notes: blender-bot 2023-02-14 04:07:50 +01:00
Referenced by issue #68317, Using "a" hotkey in nested collapsible menus only affects the parent menu
1 changed files with 1 additions and 1 deletions

View File

@ -2410,7 +2410,7 @@ int ui_handler_panel_region(bContext *C,
if (event->type == EVT_AKEY && !IS_EVENT_MOD(event, shift, ctrl, alt, oskey)) {
retval = WM_UI_HANDLER_BREAK;
ui_handle_panel_header(C, block, mx, event->type, event->ctrl, event->shift);
continue;
break;
}
}