Commit: cebe5f2c7f49c10c88ae753802cb977841296177 Author: Hans Goudey Date: Mon Aug 12 09:25:01 2019 -0400 Branches: soc-2019-bevel-profiles https://developer.blender.org/rBcebe5f2c7f49c10c88ae753802cb977841296177
Bevel Tool: Move three items in UI =================================================================== M source/blender/editors/mesh/editmesh_bevel.c =================================================================== diff --git a/source/blender/editors/mesh/editmesh_bevel.c b/source/blender/editors/mesh/editmesh_bevel.c index c711cb4bf7a..fe68ff47c88 100644 --- a/source/blender/editors/mesh/editmesh_bevel.c +++ b/source/blender/editors/mesh/editmesh_bevel.c @@ -869,12 +869,6 @@ static void edbm_bevel_ui(bContext *C, wmOperator *op) row = uiLayoutRow(layout, true); uiItemR(row, &ptr, "offset_type", UI_ITEM_R_EXPAND, NULL, ICON_NONE); - - - uiItemR(layout, &ptr, "segments", 0, NULL, ICON_NONE); - uiItemR(layout, &ptr, "profile", UI_ITEM_R_SLIDER, NULL, ICON_NONE); - uiItemR(layout, &ptr, "material", 0, NULL, ICON_NONE); - split = uiLayoutSplit(layout, 0.5f, true); col = uiLayoutColumn(split, true); uiItemR(col, &ptr, "vertex_only", 0, NULL, ICON_NONE); @@ -885,6 +879,10 @@ static void edbm_bevel_ui(bContext *C, wmOperator *op) uiItemR(col, &ptr, "mark_sharp", 0, NULL, ICON_NONE); uiItemR(col, &ptr, "harden_normals", 0, NULL, ICON_NONE); + uiItemR(layout, &ptr, "segments", 0, NULL, ICON_NONE); + uiItemR(layout, &ptr, "profile", UI_ITEM_R_SLIDER, NULL, ICON_NONE); + uiItemR(layout, &ptr, "material", 0, NULL, ICON_NONE); + uiItemL(layout, "Miter Type:", ICON_NONE); uiItemR(layout, &ptr, "miter_outer", 0, "Outer", ICON_NONE); uiItemR(layout, &ptr, "miter_inner", 0, "Inner", ICON_NONE); _______________________________________________ Bf-blender-cvs mailing list [email protected] https://lists.blender.org/mailman/listinfo/bf-blender-cvs
