[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [32042] trunk/blender/source/blender/ editors/mesh/editmesh_mods.c: bug report [#23933] "Select Linked" with " Limit by Seams" only working for Face Mode selection

Campbell Barton ideasman42 at gmail.com
Tue Sep 21 18:21:01 CEST 2010


Revision: 32042
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=32042
Author:   campbellbarton
Date:     2010-09-21 18:21:01 +0200 (Tue, 21 Sep 2010)

Log Message:
-----------
bug report [#23933] "Select Linked" with "Limit by Seams" only working for Face Mode selection
This is intentional so include in tooltip

Modified Paths:
--------------
    trunk/blender/source/blender/editors/mesh/editmesh_mods.c

Modified: trunk/blender/source/blender/editors/mesh/editmesh_mods.c
===================================================================
--- trunk/blender/source/blender/editors/mesh/editmesh_mods.c	2010-09-21 15:16:58 UTC (rev 32041)
+++ trunk/blender/source/blender/editors/mesh/editmesh_mods.c	2010-09-21 16:21:01 UTC (rev 32042)
@@ -2542,7 +2542,7 @@
 	ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
 	
 	RNA_def_boolean(ot->srna, "deselect", 0, "Deselect", "");
-	RNA_def_boolean(ot->srna, "limit", 0, "Limit by Seams", "");
+	RNA_def_boolean(ot->srna, "limit", 0, "Limit by Seams", "Limit selection by seam boundries (faces only)");
 }
 
 
@@ -2631,7 +2631,7 @@
 	/* flags */
 	ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
 	
-	RNA_def_boolean(ot->srna, "limit", 0, "Limit by Seams", "");
+	RNA_def_boolean(ot->srna, "limit", 0, "Limit by Seams", "Limit selection by seam boundries (faces only)");
 }
 
 





More information about the Bf-blender-cvs mailing list