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:
authorPablo Vazquez <venomgfx@gmail.com>2018-05-31 17:05:38 +0300
committerPablo Vazquez <venomgfx@gmail.com>2018-05-31 17:05:47 +0300
commit0b396bc15bd4433bfe9b8c6ffbc87d312d2426c1 (patch)
treecfbc35a676b7450557316878af1ac1e60343d844
parentb809340960693a3e9808e59de4d1e029226fb492 (diff)
Minor tweaks to labels
-rw-r--r--intern/cycles/blender/addon/properties.py2
-rw-r--r--intern/cycles/blender/addon/ui.py4
-rw-r--r--release/scripts/startup/bl_ui/properties_render.py5
3 files changed, 6 insertions, 5 deletions
diff --git a/intern/cycles/blender/addon/properties.py b/intern/cycles/blender/addon/properties.py
index aea43c5ccff..3b79b6e52fd 100644
--- a/intern/cycles/blender/addon/properties.py
+++ b/intern/cycles/blender/addon/properties.py
@@ -1154,7 +1154,7 @@ class CyclesCurveRenderSettings(bpy.types.PropertyGroup):
default='THICK',
)
cls.cull_backfacing = BoolProperty(
- name="Cull back-faces",
+ name="Cull Back-faces",
description="Do not test the back-face of each strand",
default=True,
)
diff --git a/intern/cycles/blender/addon/ui.py b/intern/cycles/blender/addon/ui.py
index 032b3e9573d..1bb2b5acd36 100644
--- a/intern/cycles/blender/addon/ui.py
+++ b/intern/cycles/blender/addon/ui.py
@@ -433,7 +433,7 @@ class CYCLES_RENDER_PT_filter(CyclesButtonsPanel, Panel):
col = layout.column()
col.prop(view_layer, "use_sky", "Use Environment")
- col.prop(view_layer, "use_ao", "Use AO")
+ col.prop(view_layer, "use_ao", "Use Ambient Occlusion")
col.prop(view_layer, "use_solid", "Use Surfaces")
col.prop(view_layer, "use_strand", "Use Hair")
if with_freestyle:
@@ -472,7 +472,7 @@ class CYCLES_RENDER_PT_layer_passes(CyclesButtonsPanel, Panel):
col.prop(view_layer, "use_pass_material_index")
col.separator()
col.prop(view_layer, "use_pass_shadow")
- col.prop(view_layer, "use_pass_ambient_occlusion")
+ col.prop(view_layer, "use_pass_ambient_occlusion", text="Ambient Occlusion")
col.separator()
col.prop(view_layer, "pass_alpha_threshold")
diff --git a/release/scripts/startup/bl_ui/properties_render.py b/release/scripts/startup/bl_ui/properties_render.py
index 92608cfccb9..5b83e0a5805 100644
--- a/release/scripts/startup/bl_ui/properties_render.py
+++ b/release/scripts/startup/bl_ui/properties_render.py
@@ -67,12 +67,13 @@ class RENDER_PT_context(Panel):
def draw(self, context):
layout = self.layout
+ layout.use_property_split = True
scene = context.scene
rd = scene.render
if rd.has_multiple_engines:
- layout.prop(rd, "engine", text="")
+ layout.prop(rd, "engine", text="Render Engine")
class RENDER_PT_dimensions(RenderButtonsPanel, Panel):
@@ -138,7 +139,7 @@ class RENDER_PT_dimensions(RenderButtonsPanel, Panel):
col = layout.column(align=True)
col.prop(rd, "resolution_x", text="Resolution X")
col.prop(rd, "resolution_y", text="Y")
- col.prop(rd, "resolution_percentage")
+ col.prop(rd, "resolution_percentage", text="%")
col = layout.column(align=True)
col.prop(rd, "pixel_aspect_x", text="Aspect X")