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:
authorCampbell Barton <ideasman42@gmail.com>2019-04-20 21:49:19 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-20 21:50:47 +0300
commit9a77fb553c7aeb5a7dae24e53721b586142cc4f4 (patch)
tree276051d3ed410f54bd8499f3d88dbb078cfed4eb /release/scripts/startup/bl_ui/space_nla.py
parent2fb9c8ef125f975596b6ef9c8f021403f8279bdf (diff)
UI: remove redundant row for header template
If it's members need to be aligned the template can handle it.
Diffstat (limited to 'release/scripts/startup/bl_ui/space_nla.py')
-rw-r--r--release/scripts/startup/bl_ui/space_nla.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_nla.py b/release/scripts/startup/bl_ui/space_nla.py
index 8c5c360de93..ba94769d2c0 100644
--- a/release/scripts/startup/bl_ui/space_nla.py
+++ b/release/scripts/startup/bl_ui/space_nla.py
@@ -33,8 +33,7 @@ class NLA_HT_header(Header):
st = context.space_data
- row = layout.row(align=True)
- row.template_header()
+ layout.template_header()
NLA_MT_editor_menus.draw_collapsible(context, layout)