From ff4c9d69ee4bf1764b6f4effa487e29e6c4ab985 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 12 Jan 2018 12:30:58 +1100 Subject: 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) --- release/scripts/startup/bl_ui/space_userpref.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'release') 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): -- cgit v1.2.3