[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [28718] trunk/blender/release/scripts/ui/ space_userpref.py: Themes "3D View":

Thomas Dinges dingto at gmx.de
Mon May 10 19:54:34 CEST 2010


Revision: 28718
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=28718
Author:   dingto
Date:     2010-05-10 19:54:34 +0200 (Mon, 10 May 2010)

Log Message:
-----------
Themes "3D View":
*Minor code changes and added some missing edge settings.

Modified Paths:
--------------
    trunk/blender/release/scripts/ui/space_userpref.py

Modified: trunk/blender/release/scripts/ui/space_userpref.py
===================================================================
--- trunk/blender/release/scripts/ui/space_userpref.py	2010-05-10 17:49:07 UTC (rev 28717)
+++ trunk/blender/release/scripts/ui/space_userpref.py	2010-05-10 17:54:34 UTC (rev 28718)
@@ -622,9 +622,10 @@
             col.prop(v3d, "bone_solid")
             col.prop(v3d, "bone_pose")
             col.prop(v3d, "edge_seam")
+            col.prop(v3d, "edge_select")
+            col.prop(v3d, "edge_facesel")
             col.prop(v3d, "edge_sharp")
             col.prop(v3d, "edge_crease")
-            #col.prop(v3d, "edge") Doesn't seem to work
 
         elif theme.theme_area == 'GRAPH_EDITOR':
             graph = theme.graph_editor
@@ -925,18 +926,18 @@
             col.prop(prefs, "header_text")
 
         elif theme.theme_area == 'CONSOLE':
-            prefs = theme.console
+            console = theme.console
 
             col = split.column()
-            col.prop(prefs, "back")
-            col.prop(prefs, "header")
+            col.prop(console, "back")
+            col.prop(console, "header")
 
             col = split.column()
-            col.prop(prefs, "line_output")
-            col.prop(prefs, "line_input")
-            col.prop(prefs, "line_info")
-            col.prop(prefs, "line_error")
-            col.prop(prefs, "cursor")
+            col.prop(console, "line_output")
+            col.prop(console, "line_input")
+            col.prop(console, "line_info")
+            col.prop(console, "line_error")
+            col.prop(console, "cursor")
 
 
 class USERPREF_PT_file(bpy.types.Panel):





More information about the Bf-blender-cvs mailing list