From 226b954dee7e47bac930c6f2a5a7946aed38e065 Mon Sep 17 00:00:00 2001 From: meta-androcto Date: Tue, 15 Aug 2017 14:28:25 +1000 Subject: brush menus, fix indent last commit, bump version number --- space_view3d_brush_menus/__init__.py | 2 +- space_view3d_brush_menus/dyntopo_menu.py | 40 ++++++++++++++++---------------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/space_view3d_brush_menus/__init__.py b/space_view3d_brush_menus/__init__.py index 9446083a..3371505e 100644 --- a/space_view3d_brush_menus/__init__.py +++ b/space_view3d_brush_menus/__init__.py @@ -23,7 +23,7 @@ bl_info = { "name": "Sculpt/Paint Brush Menus", "description": "Fast access to brushes & tools in Sculpt and Paint Modes", "author": "Ryan Inch (Imaginer)", - "version": (1, 1, 5), + "version": (1, 1, 6), "blender": (2, 78, 0), "location": "Alt V in Sculpt/Paint Modes", "warning": '', diff --git a/space_view3d_brush_menus/dyntopo_menu.py b/space_view3d_brush_menus/dyntopo_menu.py index da1bd8a9..1e7a5600 100644 --- a/space_view3d_brush_menus/dyntopo_menu.py +++ b/space_view3d_brush_menus/dyntopo_menu.py @@ -90,30 +90,30 @@ class DynTopoMenu(Menu): ("Constant Detail", 'CONSTANT'), ("Brush Detail", 'BRUSH')) - layout.row().label("Refine") - layout.row().separator() + layout.row().label("Refine") + layout.row().separator() - # add the refine menu items - for item in refine_items: - utils_core.menuprop( - layout.row(), item[0], item[1], - refine_path, disable=True, - icon='RADIOBUT_OFF', - disable_icon='RADIOBUT_ON' - ) + # add the refine menu items + for item in refine_items: + utils_core.menuprop( + layout.row(), item[0], item[1], + refine_path, disable=True, + icon='RADIOBUT_OFF', + disable_icon='RADIOBUT_ON' + ) - layout.row().label("") + layout.row().label("") - layout.row().label("Type") - layout.row().separator() + layout.row().label("Type") + layout.row().separator() - # add the type menu items - for item in type_items: - utils_core.menuprop( - layout.row(), item[0], item[1], - type_path, disable=True, - icon='RADIOBUT_OFF', disable_icon='RADIOBUT_ON' - ) + # add the type menu items + for item in type_items: + utils_core.menuprop( + layout.row(), item[0], item[1], + type_path, disable=True, + icon='RADIOBUT_OFF', disable_icon='RADIOBUT_ON' + ) class SymmetrizeMenu(Menu): -- cgit v1.2.3