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-07-20 09:25:36 +0300
committermeta-androcto <meta.androcto1@gmail.com>2017-07-20 09:25:36 +0300
commite70b309dac3f6aae5cb42a7a90ce0f407350060f (patch)
tree7bdbebb5f7f0137425a5c025eb162ccdcece9504 /space_view3d_brush_menus/__init__.py
parent766887ce0c1f46dfcf0ca47df27b9f638bb0952e (diff)
brush menus: bug fixes/update by imaginer T52124
Diffstat (limited to 'space_view3d_brush_menus/__init__.py')
-rw-r--r--space_view3d_brush_menus/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/space_view3d_brush_menus/__init__.py b/space_view3d_brush_menus/__init__.py
index a591187c..9446083a 100644
--- a/space_view3d_brush_menus/__init__.py
+++ b/space_view3d_brush_menus/__init__.py
@@ -23,8 +23,8 @@ 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, 4),
- "blender": (2, 7, 8),
+ "version": (1, 1, 5),
+ "blender": (2, 78, 0),
"location": "Alt V in Sculpt/Paint Modes",
"warning": '',
"wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6/Py/"
@@ -109,7 +109,7 @@ def register():
# register hotkeys
wm = bpy.context.window_manager
- modes = ['Sculpt', 'Vertex Paint', 'Weight Paint', 'Image Paint', 'Particle']
+ modes = ('Sculpt', 'Vertex Paint', 'Weight Paint', 'Image Paint', 'Particle')
for mode in modes:
km = wm.keyconfigs.addon.keymaps.new(name=mode)