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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Poirier <theeth@yahoo.com>2010-06-20 00:25:00 +0400
committerMartin Poirier <theeth@yahoo.com>2010-06-20 00:25:00 +0400
commit62ffe6304583af57e655bbda1b8a8cf074ee8172 (patch)
tree7fdd5e49d1701a950283a41f95bdc8e4f176c367 /release
parent801beadc520d3deb6518f0a3ea7a1956615ebe67 (diff)
etch-a-ton bugfix
Add Convert operator and button (missing in 2.5) Fix stroke selection (uneeded separate operator and missing redraw) Map sketch operators to LEFTMOUSE and RIGHTMOUSE instead of SELECTMOUSE AND ACTIONMOUSE (more in line with other sketching operators, might work better with swapped mouse buttons)
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/space_view3d.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py
index 14312d3c1ad..d4ac6b1eae0 100644
--- a/release/scripts/ui/space_view3d.py
+++ b/release/scripts/ui/space_view3d.py
@@ -2163,6 +2163,7 @@ class VIEW3D_PT_etch_a_ton(bpy.types.Panel):
col.prop(toolsettings, "etch_autoname")
col.prop(toolsettings, "etch_number")
col.prop(toolsettings, "etch_side")
+ col.operator("sketch.convert", text="Convert")
class VIEW3D_PT_context_properties(bpy.types.Panel):