Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNBurn <7nburn@gmail.com>2019-01-23 23:03:09 +0300
committerNBurn <7nburn@gmail.com>2019-01-23 23:03:09 +0300
commit49c1b409286937d00a63fbf4cfb1f820a75a80c0 (patch)
treee85be0be22a3929aa28e4f3b4d3b16741eb26ebc /lighting_dynamic_sky.py
parent54f2341bdee0e6e5dfacd65a38740f99996efa52 (diff)
addons: add missing text= keyword after label
Diffstat (limited to 'lighting_dynamic_sky.py')
-rw-r--r--lighting_dynamic_sky.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/lighting_dynamic_sky.py b/lighting_dynamic_sky.py
index 2fd0b283..1204d538 100644
--- a/lighting_dynamic_sky.py
+++ b/lighting_dynamic_sky.py
@@ -432,21 +432,21 @@ def draw_world_settings(col, context):
col.label(text="one called {}".format(stored_name), icon="BLANK1")
return
- col.label("World: %s" % stored_name)
+ col.label(text="World: %s" % stored_name)
col.separator()
- col.label("Scene Control")
+ col.label(text="Scene Control")
col.prop(bgp, "default_value", text="Brightness")
col.prop(so2, "default_value", text="Shadow color saturation")
- col.label("Sky Control")
+ col.label(text="Sky Control")
col.prop(m, "default_value", text="Sky color")
col.prop(n, "default_value", text="Horizon Color")
col.prop(c, "default_value", text="Cloud color")
col.prop(o, "default_value", text="Cloud opacity")
col.prop(d, "default_value", text="Cloud density")
- col.label("Sun Control")
+ col.label(text="Sun Control")
col.prop(suc, "default_value", text="")
col.prop(so, "default_value", text="Sun value")
col.prop(sof, "default_value", text="Soft hard")