From 786ff13540ba8d4208fe4329b84b6d10f1fba91c Mon Sep 17 00:00:00 2001 From: Julian Eisel Date: Wed, 6 May 2020 23:55:14 +0200 Subject: [PATCH] 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". --- release/scripts/startup/bl_operators/userpref.py | 1 + 1 file changed, 1 insertion(+) 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", ""),