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>2013-11-24 18:14:45 +0400
committerThomas Dinges <blender@dingto.org>2013-11-24 18:14:45 +0400
commit61a28ef7643e50178a1d42d0db41d8eaf732debd (patch)
tree3ec47801cffcfd920a11f2c0a38a18da9d7c060f /release/scripts/startup/bl_ui/properties_scene.py
parentfab96b59133fee78b6c2e5ad3d5bc74d3d3bf4d5 (diff)
Interface: Remove some more name fields, not needed anymore with list rename.
Also small alignment tweaks to Keying Sets UI, looks better when the 2 columns have the same alignment.
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_scene.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_scene.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/properties_scene.py b/release/scripts/startup/bl_ui/properties_scene.py
index 34143c77998..10574c88abb 100644
--- a/release/scripts/startup/bl_ui/properties_scene.py
+++ b/release/scripts/startup/bl_ui/properties_scene.py
@@ -106,14 +106,13 @@ class SCENE_PT_keying_sets(SceneButtonsPanel, Panel):
row = layout.row()
col = row.column()
- col.prop(ks, "bl_label")
col.prop(ks, "bl_description")
subcol = col.column()
subcol.operator_context = 'INVOKE_DEFAULT'
subcol.operator("anim.keying_set_export", text="Export to File").filepath = "keyingset.py"
- col = row.column(align=True)
+ col = row.column()
col.label(text="Keyframing Settings:")
col.prop(ks, "bl_options")
@@ -169,7 +168,7 @@ class SCENE_PT_keying_set_paths(SceneButtonsPanel, Panel):
if ksp.group_method == 'NAMED':
col.prop(ksp, "group")
- col = row.column(align=True)
+ col = row.column()
col.label(text="Keyframing Settings:")
col.prop(ksp, "bl_options")