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:
authorThomas Dinges <blender@dingto.org>2010-05-10 21:54:34 +0400
committerThomas Dinges <blender@dingto.org>2010-05-10 21:54:34 +0400
commit68376214b540a6d8718466d4bda50b77bc24cda6 (patch)
tree2291ac88b8da1ff5516ac286a681c5f4e0c2d22f /release/scripts/ui/space_userpref.py
parent8d9e55122f94712258b1a4e4d6aacff15864fe31 (diff)
Themes "3D View":
*Minor code changes and added some missing edge settings.
Diffstat (limited to 'release/scripts/ui/space_userpref.py')
-rw-r--r--release/scripts/ui/space_userpref.py19
1 files changed, 10 insertions, 9 deletions
diff --git a/release/scripts/ui/space_userpref.py b/release/scripts/ui/space_userpref.py
index e00754f6fb7..be56cffb59a 100644
--- a/release/scripts/ui/space_userpref.py
+++ b/release/scripts/ui/space_userpref.py
@@ -622,9 +622,10 @@ class USERPREF_PT_theme(bpy.types.Panel):
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 @@ class USERPREF_PT_theme(bpy.types.Panel):
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):