Fix T44708: UI label should use plural

Just to keep commit ratio up while being busy preparing for final exams
;)
This commit is contained in:
Julian Eisel 2015-05-18 21:29:57 +02:00
parent 192fddb324
commit 598c2dffe9

@ -87,7 +87,7 @@ class RENDERLAYER_PT_layer_options(RenderLayerButtonsPanel, Panel):
col = split.column() col = split.column()
col.prop(scene, "layers", text="Scene") col.prop(scene, "layers", text="Scene")
col.label(text="") 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.prop(rl, "material_override", text="Material")
col = split.column() col = split.column()