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:
authorBart Crouch <bartius.crouch@gmail.com>2014-08-06 17:16:23 +0400
committerBart Crouch <bartius.crouch@gmail.com>2014-08-06 17:16:23 +0400
commit80c798648584776bbcc6a79d25de15722e4b98ba (patch)
treebca34199834bd2d81618313f674abdc2f77d64aa /mesh_looptools.py
parent56206bae8058430495b1cc7f6d221ee4d438eb9b (diff)
Fix T41178
Merge of soc-2013-paint added a new parameter to strokes: "size" This crashed the add-on when trying to erase strokes (since they did not yet have this additional parameter)
Diffstat (limited to 'mesh_looptools.py')
-rw-r--r--mesh_looptools.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/mesh_looptools.py b/mesh_looptools.py
index 0e4d26ad..a1e52a12 100644
--- a/mesh_looptools.py
+++ b/mesh_looptools.py
@@ -19,7 +19,7 @@
bl_info = {
"name": "LoopTools",
"author": "Bart Crouch",
- "version": (4, 6, 0),
+ "version": (4, 6, 1),
"blender": (2, 69, 3),
"location": "View3D > Toolbar and View3D > Specials (W-key)",
"warning": "",
@@ -2702,6 +2702,7 @@ def gstretch_erase_stroke(stroke, context):
'mouse': (view3d_utils.location_3d_to_region_2d(\
context.region, context.space_data.region_3d, loc)),
'pressure': 1,
+ 'size': 0,
'time': 0}
return(lib)