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_properties.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_properties.py')
-rw-r--r--release/scripts/startup/bl_ui/space_properties.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_properties.py b/release/scripts/startup/bl_ui/space_properties.py
index 5cdcdaa0254..7d9ca687524 100644
--- a/release/scripts/startup/bl_ui/space_properties.py
+++ b/release/scripts/startup/bl_ui/space_properties.py
@@ -26,8 +26,7 @@ class PROPERTIES_HT_header(Header):
def draw(self, _context):
layout = self.layout
- row = layout.row()
- row.template_header()
+ layout.template_header()
class PROPERTIES_PT_navigation_bar(Panel):