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>2015-01-31 20:15:34 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-01-31 20:19:55 +0300
commit26f9a9245387ced59214840f99ccf4aabc0c39f4 (patch)
treed1a16bf0eeea32e24a22c4999f48eb1fb2cceaf2 /release
parent595675ea7aa31814a641e823ae03dfbe405c2edb (diff)
WM: empty menu so addons can extend the splash
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_userpref.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_userpref.py b/release/scripts/startup/bl_ui/space_userpref.py
index 10394e50581..d8f7c4f4094 100644
--- a/release/scripts/startup/bl_ui/space_userpref.py
+++ b/release/scripts/startup/bl_ui/space_userpref.py
@@ -120,6 +120,14 @@ class USERPREF_MT_splash(Menu):
row.menu("USERPREF_MT_appconfigs", text="Preset")
+# only for addons
+class USERPREF_MT_splash_footer(Menu):
+ bl_label = ""
+
+ def draw(self, context):
+ pass
+
+
class USERPREF_PT_interface(Panel):
bl_space_type = 'USER_PREFERENCES'
bl_label = "Interface"