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:
authorJulian Eisel <julian@blender.org>2020-05-07 00:55:14 +0300
committerJulian Eisel <julian@blender.org>2020-05-07 00:55:14 +0300
commit786ff13540ba8d4208fe4329b84b6d10f1fba91c (patch)
tree64a878281b1a4cdb478fe6eab9a2f268d8b58125 /release
parenta5ffc6309e0a8ad352d0fa711b94e910c7d80a1b (diff)
Fix UI string without title-case
When using Preferences->Lights->Install, the type option in the operator properties would show as "type", but should be "Type".
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_operators/userpref.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_operators/userpref.py b/release/scripts/startup/bl_operators/userpref.py
index a4c19d5a8da..2e14df1920f 100644
--- a/release/scripts/startup/bl_operators/userpref.py
+++ b/release/scripts/startup/bl_operators/userpref.py
@@ -984,6 +984,7 @@ class PREFERENCES_OT_studiolight_install(Operator):
options={'HIDDEN'},
)
type: EnumProperty(
+ name="Type",
items=(
('MATCAP', "MatCap", ""),
('WORLD', "World", ""),