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:
authorSergey Sharybin <sergey.vfx@gmail.com>2010-03-12 19:43:04 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2010-03-12 19:43:04 +0300
commit4a8849b030acf3ce4768501bbbf85e6c531a86a1 (patch)
tree09ba088edac6a5da477b637151ad1d616d1b9092 /release
parenta19e542db2d5d65aae9720d22e10e578d2b5bd9e (diff)
- Hhighlight active nurb in edit mode
- Replaced hardcoded nurbcol array with theme colors - Send notification in duplicate curve operator (this operator could reset/change active nurb) - Edge seam color added to the user preferences dialog
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/space_userpref.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/release/scripts/ui/space_userpref.py b/release/scripts/ui/space_userpref.py
index 6e8fa8d1a28..35bda77c1d8 100644
--- a/release/scripts/ui/space_userpref.py
+++ b/release/scripts/ui/space_userpref.py
@@ -658,6 +658,19 @@ class USERPREF_PT_theme(bpy.types.Panel):
col.prop(v3d, "object_grouped")
col.prop(v3d, "object_grouped_active")
col.prop(v3d, "transform")
+ col.prop(v3d, "nurb_uline")
+ col.prop(v3d, "nurb_vline")
+ col.prop(v3d, "nurb_sel_uline")
+ col.prop(v3d, "nurb_sel_vline")
+ col.prop(v3d, "handle_free")
+ col.prop(v3d, "handle_auto")
+ col.prop(v3d, "handle_vect")
+ col.prop(v3d, "handle_align")
+ col.prop(v3d, "handle_sel_free")
+ col.prop(v3d, "handle_sel_auto")
+ col.prop(v3d, "handle_sel_vect")
+ col.prop(v3d, "handle_sel_align")
+ col.prop(v3d, "act_spline")
col = split.column()
col.prop(v3d, "vertex")
@@ -666,6 +679,7 @@ class USERPREF_PT_theme(bpy.types.Panel):
col.prop(v3d, "vertex_normal")
col.prop(v3d, "bone_solid")
col.prop(v3d, "bone_pose")
+ col.prop(v3d, "edge_seam")
#col.prop(v3d, "edge") Doesn't seem to work
elif theme.theme_area == 'GRAPH_EDITOR':