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@blender.org>2020-11-12 11:26:20 +0300
committerSergey Sharybin <sergey@blender.org>2020-11-12 11:26:20 +0300
commitde6cee4fc1913982b0b2bd786bfd813c935bbe73 (patch)
treea726c0c63bbd1d6c47c90c32119ce14c8048cddc /release/scripts/startup/bl_ui/space_statusbar.py
parente4d432500a0e2f978fe019da43deb843da405032 (diff)
parent88bb29dea668df8cc46aa7f55895f229748bdbb4 (diff)
Merge branch 'master' into codesign_error_tracker
Diffstat (limited to 'release/scripts/startup/bl_ui/space_statusbar.py')
-rw-r--r--release/scripts/startup/bl_ui/space_statusbar.py13
1 files changed, 6 insertions, 7 deletions
diff --git a/release/scripts/startup/bl_ui/space_statusbar.py b/release/scripts/startup/bl_ui/space_statusbar.py
index cbf72a7bc59..616a3ab45fd 100644
--- a/release/scripts/startup/bl_ui/space_statusbar.py
+++ b/release/scripts/startup/bl_ui/space_statusbar.py
@@ -31,7 +31,12 @@ class STATUSBAR_HT_header(Header):
layout.separator_spacer()
- # Nothing in the center.
+ # Messages
+ layout.template_reports_banner()
+
+ # Progress Bar
+ layout.template_running_jobs()
+
layout.separator_spacer()
row = layout.row()
@@ -40,12 +45,6 @@ class STATUSBAR_HT_header(Header):
# Stats & Info
row.label(text=context.screen.statusbar_info(), translate=False)
- # Messages
- row.template_reports_banner()
-
- # Progress Bar
- row.template_running_jobs()
-
classes = (
STATUSBAR_HT_header,