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:
authorDamien Picard <dam.pic@free.fr>2020-12-04 22:50:23 +0300
committerDamien Picard <dam.pic@free.fr>2020-12-05 02:41:32 +0300
commit6024a89ae2a5dbacb681874337e4bda2c3f86c25 (patch)
tree90a6d7834d21e68f3f1de6cd6c9ec74f7b2bbb79 /sun_position
parent169bba162a919648e016776e3ad841175805a003 (diff)
Sun position: remove trailing colons and capitalize props in UI
Diffstat (limited to 'sun_position')
-rw-r--r--sun_position/ui_sun.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/sun_position/ui_sun.py b/sun_position/ui_sun.py
index ec58589c..49f04e33 100644
--- a/sun_position/ui_sun.py
+++ b/sun_position/ui_sun.py
@@ -84,7 +84,7 @@ class SUNPOS_PT_Panel(bpy.types.Panel):
def draw_panel(self, context, sp, p, layout):
col = self.layout.column(align=True)
- col.label(text="Usage mode:")
+ col.label(text="Usage Mode")
row = col.row()
row.prop(sp, "usage_mode", expand=True)
col.separator()
@@ -98,7 +98,7 @@ class SUNPOS_PT_Panel(bpy.types.Panel):
even_rows=False, align=False)
col = flow.column(align=True)
- col.label(text="Environment texture:")
+ col.label(text="Environment Texture")
if context.scene.world is not None:
if context.scene.world.node_tree is not None:
@@ -114,7 +114,7 @@ class SUNPOS_PT_Panel(bpy.types.Panel):
col.separator()
col = flow.column(align=True)
- col.label(text="Sun object:")
+ col.label(text="Sun Object")
col.prop_search(sp, "sun_object",
context.view_layer, "objects", text="")
col.separator()
@@ -187,7 +187,7 @@ class SUNPOS_PT_Location(bpy.types.Panel):
p = context.preferences.addons[__package__].preferences
col = layout.column(align=True)
- col.label(text="Enter coordinates:")
+ col.label(text="Enter Coordinates")
col.prop(sp, "co_parser", text='', icon='URL')
layout.separator()