[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [4500] contrib/py/scripts/addons/ mesh_border_deselect_outer.py: Addons: Mesh Border Deselect Outer - updated info, make operator remove its temporary BMLayer

Sebastian Nell codemanx at gmx.de
Wed May 1 01:34:05 CEST 2013


Revision: 4500
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=4500
Author:   codemanx
Date:     2013-04-30 23:34:04 +0000 (Tue, 30 Apr 2013)
Log Message:
-----------
Addons: Mesh Border Deselect Outer - updated info, make operator remove its temporary BMLayer

Modified Paths:
--------------
    contrib/py/scripts/addons/mesh_border_deselect_outer.py

Modified: contrib/py/scripts/addons/mesh_border_deselect_outer.py
===================================================================
--- contrib/py/scripts/addons/mesh_border_deselect_outer.py	2013-04-30 22:46:24 UTC (rev 4499)
+++ contrib/py/scripts/addons/mesh_border_deselect_outer.py	2013-04-30 23:34:04 UTC (rev 4500)
@@ -6,12 +6,15 @@
     "author": "CoDEmanX",
     "version": (1, 2),
     "blender": (2, 66, 0),
-    "location": "View3D > Spacebar > Border Deselect Outer",
-    "description": "Make a selection, then run this operator to border-select the desired selection intersection",
+    "location": "View3D > EditMode > Select",
+    "description": "Make a selection, then run this operator " \
+        "to border-select the desired selection intersection",
     "warning": "",
-    "wiki_url": "",
-    "tracker_url": "",
-    "category": "3D View"}
+    "wiki_url": "http://wiki.blender.org/index.php" \
+        "?title=Extensions:2.6/Py/Scripts/Modeling/Border_Deselect_Outer",
+    "tracker_url": "http://blenderartists.org/forum/showthread.php" \
+        "?290617-Mesh-Border-Deselect-Outer-(selection-intersection-by-using-a-border-select)",
+    "category": "Mesh"}
 
 
 def store_sel():
@@ -34,6 +37,8 @@
         if not (v.select and v.link_loops[0][sel]):
             v.select_set(False)
 
+    bm.loops.layers.int.remove(sel)
+
     #bm.select_mode = {'VERT'}
     #bm.select_flush_mode()
     bm.select_flush(False)



More information about the Bf-extensions-cvs mailing list