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 /space_view3d_brush_menus/dyntopo_menu.py
parent6cc9ea01de42ba9c56321bf64dd2dd631567a153 (diff)
brush menus, fix indent last commit, bump version number
Diffstat (limited to 'space_view3d_brush_menus/dyntopo_menu.py')
-rw-r--r--space_view3d_brush_menus/dyntopo_menu.py40
1 files changed, 20 insertions, 20 deletions
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):