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 <eiseljulian@gmail.com>2015-05-18 22:29:57 +0300
committerJulian Eisel <eiseljulian@gmail.com>2015-05-18 22:29:57 +0300
commit598c2dffe92f5a5deea5d2da97c405f93f7941a4 (patch)
tree12e97f3aa030598d5b5c1f74c875208200e8e133 /release/scripts
parent192fddb324222c0ac9b38f9c8c2e3450f7f487ae (diff)
Fix T44708: UI label should use plural
Just to keep commit ratio up while being busy preparing for final exams ;)
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/startup/bl_ui/properties_render_layer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/properties_render_layer.py b/release/scripts/startup/bl_ui/properties_render_layer.py
index b23892df408..8b26d82b28a 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()