From 460c1d8e20491ec53dff94464e89796608a19b72 Mon Sep 17 00:00:00 2001 From: Aaron Carlisle Date: Mon, 8 Jun 2020 05:39:48 -0400 Subject: Revert "UI: Bevel: Show Offset type before offset amount" This reverts commit f50222ba2e3e4aa461c23b4f0b3f3382a9e0632c. --- source/blender/editors/mesh/editmesh_bevel.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'source/blender/editors/mesh') diff --git a/source/blender/editors/mesh/editmesh_bevel.c b/source/blender/editors/mesh/editmesh_bevel.c index 8d644875d11..e94412233ff 100644 --- a/source/blender/editors/mesh/editmesh_bevel.c +++ b/source/blender/editors/mesh/editmesh_bevel.c @@ -938,9 +938,6 @@ static void edbm_bevel_ui(bContext *C, wmOperator *op) RNA_pointer_create(NULL, op->type->srna, op->properties, &ptr); - col = uiLayoutRow(layout, true); - uiItemR(col, &ptr, "offset_type", UI_ITEM_R_EXPAND, NULL, ICON_NONE); - if (RNA_enum_get(&ptr, "offset_type") == BEVEL_AMT_PERCENT) { uiItemR(layout, &ptr, "offset_pct", 0, NULL, ICON_NONE); } @@ -961,6 +958,8 @@ static void edbm_bevel_ui(bContext *C, wmOperator *op) C, op->ptr, prop, RNA_property_enum_get(op->ptr, prop), &offset_name); uiItemR(layout, &ptr, "offset", 0, offset_name, ICON_NONE); } + row = uiLayoutRow(layout, true); + uiItemR(row, &ptr, "offset_type", UI_ITEM_R_EXPAND, NULL, ICON_NONE); split = uiLayoutSplit(layout, 0.5f, true); col = uiLayoutColumn(split, true); -- cgit v1.2.3