From dd0df3c5d2b634ee7fd99f0c0d2e3c6a0c0bdaaf Mon Sep 17 00:00:00 2001 From: Yevgeny Makarov Date: Wed, 6 Jan 2021 22:54:10 -0600 Subject: UI: Fix various issues with UI text - Use the name "Point Cloud" instead of "Pointcloud" - Fix a typo in UV_OT_smart_project. - Use the name "Install Light" to for the installation operator for MatCaps, HDRIs, and Studio Lights. Fixes T83585, T65291, and T54921 Differential Revision: https://developer.blender.org/D9867 --- release/scripts/startup/bl_operators/userpref.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'release') diff --git a/release/scripts/startup/bl_operators/userpref.py b/release/scripts/startup/bl_operators/userpref.py index 9adb518ff55..0cd97ca6a9e 100644 --- a/release/scripts/startup/bl_operators/userpref.py +++ b/release/scripts/startup/bl_operators/userpref.py @@ -969,9 +969,9 @@ class PREFERENCES_OT_app_template_install(Operator): # Studio Light Operations class PREFERENCES_OT_studiolight_install(Operator): - """Install a user defined studio light""" + """Install a user defined light""" bl_idname = "preferences.studiolight_install" - bl_label = "Install Custom Studio Light" + bl_label = "Install Light" files: CollectionProperty( name="File Path", @@ -981,7 +981,7 @@ class PREFERENCES_OT_studiolight_install(Operator): subtype='DIR_PATH', ) filter_folder: BoolProperty( - name="Filter folders", + name="Filter Folders", default=True, options={'HIDDEN'}, ) @@ -992,9 +992,9 @@ class PREFERENCES_OT_studiolight_install(Operator): type: EnumProperty( name="Type", items=( - ('MATCAP', "MatCap", ""), - ('WORLD', "World", ""), - ('STUDIO', "Studio", ""), + ('MATCAP', "MatCap", "Install custom MatCaps"), + ('WORLD', "World", "Install custom HDRIs"), + ('STUDIO', "Studio", "Install custom Studio Lights"), ) ) -- cgit v1.2.3