[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [44172] branches/soc-2008-mxcurioni/ release/scripts/startup/bl_ui/properties_render.py: Rearranged the locations of edge type options within the Selection by Edge Type in the Parameter Editor mode .

Tamito Kajiyama rd6t-kjym at asahi-net.or.jp
Thu Feb 16 23:08:12 CET 2012


Revision: 44172
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=44172
Author:   kjym3
Date:     2012-02-16 22:08:11 +0000 (Thu, 16 Feb 2012)
Log Message:
-----------
Rearranged the locations of edge type options within the Selection by Edge Type in the Parameter Editor mode.
A better use of screen space concerning this component was suggested by Light BWK through personal communications.

Modified Paths:
--------------
    branches/soc-2008-mxcurioni/release/scripts/startup/bl_ui/properties_render.py

Modified: branches/soc-2008-mxcurioni/release/scripts/startup/bl_ui/properties_render.py
===================================================================
--- branches/soc-2008-mxcurioni/release/scripts/startup/bl_ui/properties_render.py	2012-02-16 21:52:05 UTC (rev 44171)
+++ branches/soc-2008-mxcurioni/release/scripts/startup/bl_ui/properties_render.py	2012-02-16 22:08:11 UTC (rev 44172)
@@ -314,15 +314,14 @@
             sub = row.column()
             self.draw_edge_type_buttons(sub, lineset, "silhouette")
             self.draw_edge_type_buttons(sub, lineset, "border")
-
-            self.draw_edge_type_buttons(sub, lineset, "crease")
-            self.draw_edge_type_buttons(sub, lineset, "ridge_valley")
+            self.draw_edge_type_buttons(sub, lineset, "contour")
             self.draw_edge_type_buttons(sub, lineset, "suggestive_contour")
-            self.draw_edge_type_buttons(sub, lineset, "material_boundary")
-            self.draw_edge_type_buttons(sub, lineset, "edge_mark")
+            self.draw_edge_type_buttons(sub, lineset, "ridge_valley")
             sub = row.column()
-            self.draw_edge_type_buttons(sub, lineset, "contour")
+            self.draw_edge_type_buttons(sub, lineset, "crease")
+            self.draw_edge_type_buttons(sub, lineset, "edge_mark")
             self.draw_edge_type_buttons(sub, lineset, "external_contour")
+            self.draw_edge_type_buttons(sub, lineset, "material_boundary")
             col.separator() # XXX
 
         col.prop(lineset, "select_by_face_marks")




More information about the Bf-blender-cvs mailing list