[Bf-blender-cvs] [598c2df] master: Fix T44708: UI label should use plural

Julian Eisel noreply at git.blender.org
Mon May 18 21:30:38 CEST 2015


Commit: 598c2dffe92f5a5deea5d2da97c405f93f7941a4
Author: Julian Eisel
Date:   Mon May 18 21:29:57 2015 +0200
Branches: master
https://developer.blender.org/rB598c2dffe92f5a5deea5d2da97c405f93f7941a4

Fix T44708: UI label should use plural

Just to keep commit ratio up while being busy preparing for final exams
;)

===================================================================

M	release/scripts/startup/bl_ui/properties_render_layer.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/properties_render_layer.py b/release/scripts/startup/bl_ui/properties_render_layer.py
index b23892d..8b26d82 100644
--- a/release/scripts/startup/bl_ui/properties_render_layer.py
+++ b/release/scripts/startup/bl_ui/properties_render_layer.py
@@ -87,7 +87,7 @@ class RENDERLAYER_PT_layer_options(RenderLayerButtonsPanel, Panel):
         col = split.column()
         col.prop(scene, "layers", text="Scene")
         col.label(text="")
-        col.prop(rl, "light_override", text="Light")
+        col.prop(rl, "light_override", text="Lights")
         col.prop(rl, "material_override", text="Material")
 
         col = split.column()




More information about the Bf-blender-cvs mailing list