From 05dfd852ec629414acfca66348795ad32ef81f24 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 10 Feb 2014 13:44:59 +1100 Subject: [PATCH] UI: fix for issue in last commit, popups show above the buttons again --- source/blender/editors/interface/interface_regions.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/blender/editors/interface/interface_regions.c b/source/blender/editors/interface/interface_regions.c index 7d78be3558a..2adf18ce334 100644 --- a/source/blender/editors/interface/interface_regions.c +++ b/source/blender/editors/interface/interface_regions.c @@ -2113,7 +2113,9 @@ static uiBlock *ui_block_func_POPUP(bContext *C, uiPopupBlockHandle *handle, voi /* minimum width to enforece */ minwidth = BLI_rctf_size_x(&pup->but->rect); - if (pup->but->type == PULLDOWN || pup->but->menu_create_func) { + /* settings (typically rna-enum-popups) show above the button, + * menu's like file-menu, show below */ + if (pup->but->type == PULLDOWN || (uiButGetMenuType(pup->but) != NULL)) { direction = UI_DOWN; flip = 1; }