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:
authorPablo Vazquez <venomgfx@gmail.com>2018-11-02 05:15:38 +0300
committerPablo Vazquez <venomgfx@gmail.com>2018-11-02 05:15:38 +0300
commit37fc52cbc64f9bd00e619cd33daea49b5d51cce0 (patch)
tree0c9da506782f83a3103a9a158f67e7612a0af115
parentd9dd20bcb3f885d35ce39081ed9623bb64d96d32 (diff)
UI: Minor tweaks on User Preferences header.
* Move Save User Preferences to the right (matches file browser and quit prompt). * Icons for Import/Export keyconfig * Match order of install/reset of Themes section * Rename "Install MatCap/HDRI" to "Add MatCap/HDRI"
-rw-r--r--release/scripts/startup/bl_ui/space_userpref.py24
1 files changed, 12 insertions, 12 deletions
diff --git a/release/scripts/startup/bl_ui/space_userpref.py b/release/scripts/startup/bl_ui/space_userpref.py
index 88e173724ca..8a9bd133eb0 100644
--- a/release/scripts/startup/bl_ui/space_userpref.py
+++ b/release/scripts/startup/bl_ui/space_userpref.py
@@ -39,25 +39,25 @@ class USERPREF_HT_header(Header):
userpref = context.user_preferences
- layout.operator_context = 'EXEC_AREA'
- layout.operator("wm.save_userpref")
-
- layout.operator_context = 'INVOKE_DEFAULT'
-
if userpref.active_section == 'INPUT':
- layout.operator("wm.keyconfig_import")
- layout.operator("wm.keyconfig_export")
+ layout.operator("wm.keyconfig_import", icon='IMPORT')
+ layout.operator("wm.keyconfig_export", icon='EXPORT')
elif userpref.active_section == 'ADDONS':
layout.operator("wm.addon_install", icon='FILEBROWSER')
layout.operator("wm.addon_refresh", icon='FILE_REFRESH')
layout.menu("USERPREF_MT_addons_online_resources")
elif userpref.active_section == 'LIGHTS':
- layout.operator('wm.studiolight_install', text="Install MatCap").orientation = 'MATCAP'
- layout.operator('wm.studiolight_install', text="Install World HDRI").orientation = 'WORLD'
- layout.operator('wm.studiolight_install', text="Install Camera HDRI").orientation = 'CAMERA'
+ layout.operator('wm.studiolight_install', text="Add MatCap").orientation = 'MATCAP'
+ layout.operator('wm.studiolight_install', text="Add World HDRI").orientation = 'WORLD'
+ layout.operator('wm.studiolight_install', text="Add Camera HDRI").orientation = 'CAMERA'
elif userpref.active_section == 'THEMES':
- layout.operator("ui.reset_default_theme")
- layout.operator("wm.theme_install")
+ layout.operator("wm.theme_install", icon='FILEBROWSER')
+ layout.operator("ui.reset_default_theme", icon='LOOP_BACK')
+
+ layout.separator_spacer()
+
+ layout.operator_context = 'EXEC_AREA'
+ layout.operator("wm.save_userpref")
class USERPREF_PT_tabs(Panel):