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>2018-01-12 04:30:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-01-12 04:45:56 +0300
commitff4c9d69ee4bf1764b6f4effa487e29e6c4ab985 (patch)
treeda4d000f8641e4895b16ce35930a7a25c9d0b51b /release/scripts/startup/bl_ui/space_userpref.py
parent322f0223d04ac36ecc72cd01c371234da6de643c (diff)
User Prefs: add new flag for app-template options
For experimental options, outside the scope of typical preferences. While templates are developed we might want to make changes to behavior which aren't fully compatible with typical work-flows. Instead of mixing these options in with current preferences expose separately (we could even force disable them when templates aren't int use)
Diffstat (limited to 'release/scripts/startup/bl_ui/space_userpref.py')
-rw-r--r--release/scripts/startup/bl_ui/space_userpref.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/space_userpref.py b/release/scripts/startup/bl_ui/space_userpref.py
index 3d44c624a7b..3516085602e 100644
--- a/release/scripts/startup/bl_ui/space_userpref.py
+++ b/release/scripts/startup/bl_ui/space_userpref.py
@@ -313,13 +313,14 @@ class USERPREF_PT_interface(Panel):
sub.prop(view, "pie_menu_threshold")
sub.prop(view, "pie_menu_confirm")
col.separator()
- col.separator()
+
+ col.prop(view, "show_splash")
col.separator()
- col.label(text="Screen:")
+ col.label(text="App Template:")
+ col.label(text="Options intended for use with app-templates only.")
col.prop(view, "show_layout_ui")
- col.prop(view, "show_splash")
class USERPREF_PT_edit(Panel):