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:
Diffstat (limited to 'release/scripts/startup/bl_ui/space_stats.py')
-rw-r--r--release/scripts/startup/bl_ui/space_stats.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_stats.py b/release/scripts/startup/bl_ui/space_stats.py
index 72a4ae61917..e8fb29735af 100644
--- a/release/scripts/startup/bl_ui/space_stats.py
+++ b/release/scripts/startup/bl_ui/space_stats.py
@@ -26,7 +26,14 @@ class LAYERS_HT_header(Header):
def draw(self, context):
layout = self.layout
+
+ space = context.space_data
+
layout.template_header()
+ layout.separator()
+
+ layout.prop(space, "logging_type", expand=True)
+
if __name__ == "__main__": # only for live edit.
bpy.utils.register_module(__name__)