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; }