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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2013-11-24 17:25:38 +0400
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2013-11-24 17:27:02 +0400
commitfab96b59133fee78b6c2e5ad3d5bc74d3d3bf4d5 (patch)
treea9974ca9358eaf413827b548640c711e7520a56c /release/scripts/startup/bl_ui/properties_freestyle.py
parent1e096852bf38f8d7b9bdb93d9a5f1e585b87db05 (diff)
UI List: remove separate name text fields.
It was never the intention to have these separate, and now that we can rename directly in the list there is no more need for them.
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_freestyle.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_freestyle.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/properties_freestyle.py b/release/scripts/startup/bl_ui/properties_freestyle.py
index 607e4cc521e..87a08104c5d 100644
--- a/release/scripts/startup/bl_ui/properties_freestyle.py
+++ b/release/scripts/startup/bl_ui/properties_freestyle.py
@@ -193,7 +193,7 @@ class RENDERLAYER_PT_freestyle_lineset(RenderLayerFreestyleEditorButtonsPanel, P
layout.active = rl.use_freestyle
row = layout.row()
- rows = 4 if lineset else 1
+ rows = 4 if lineset else 2
row.template_list("RENDERLAYER_UL_linesets", "", freestyle, "linesets", freestyle.linesets, "active_index", rows=rows)
sub = row.column(align=True)
@@ -206,8 +206,6 @@ class RENDERLAYER_PT_freestyle_lineset(RenderLayerFreestyleEditorButtonsPanel, P
sub.operator("scene.freestyle_lineset_move", icon='TRIA_UP', text="").direction = 'UP'
sub.operator("scene.freestyle_lineset_move", icon='TRIA_DOWN', text="").direction = 'DOWN'
- layout.prop(lineset, "name")
-
col = layout.column()
col.label(text="Selection By:")
row = col.row(align=True)