Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormeta-androcto <meta.androcto1@gmail.com>2017-08-15 07:28:25 +0300
committermeta-androcto <meta.androcto1@gmail.com>2017-08-15 07:28:25 +0300
commit226b954dee7e47bac930c6f2a5a7946aed38e065 (patch)
tree6facc60a3601fa6c7f4070862a0956e717bf4d36
parent6cc9ea01de42ba9c56321bf64dd2dd631567a153 (diff)
brush menus, fix indent last commit, bump version number
-rw-r--r--space_view3d_brush_menus/__init__.py2
-rw-r--r--space_view3d_brush_menus/dyntopo_menu.py40
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):