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
path: root/intern
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2015-01-15 10:23:27 +0300
committerThomas Dinges <blender@dingto.org>2015-01-15 10:23:27 +0300
commit08cc4bfa615e4f58ca9799730c532edbe35c449e (patch)
treedde23c14f61a983c5e1cd8f73bc3dc62f27e7b03 /intern
parent4118c1b4e6ae04988c310d785bd1802c46187e3a (diff)
Small change for the new Lat/Long properties.
We use upper case for properties.
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/blender/addon/properties.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/intern/cycles/blender/addon/properties.py b/intern/cycles/blender/addon/properties.py
index 10c5f2bb58c..5f8a55d3de8 100644
--- a/intern/cycles/blender/addon/properties.py
+++ b/intern/cycles/blender/addon/properties.py
@@ -583,28 +583,28 @@ class CyclesCameraSettings(bpy.types.PropertyGroup):
default=10.5,
)
cls.latitude_min = FloatProperty(
- name="Min latitude",
+ name="Min Latitude",
description="Minimum latitude (vertical angle) for the equirectangular lens",
min=-0.5 * math.pi, max=0.5 * math.pi,
subtype='ANGLE',
default=-0.5 * math.pi,
)
cls.latitude_max = FloatProperty(
- name="Max latitude",
+ name="Max Latitude",
description="Maximum latitude (vertical angle) for the equirectangular lens",
min=-0.5 * math.pi, max=0.5 * math.pi,
subtype='ANGLE',
default=0.5 * math.pi,
)
cls.longitude_min = FloatProperty(
- name="Min longitude",
+ name="Min Longitude",
description="Minimum longitude (horizontal angle) for the equirectangular lens",
min=-math.pi, max=math.pi,
subtype='ANGLE',
default=-math.pi,
)
cls.longitude_max = FloatProperty(
- name="Max longitude",
+ name="Max Longitude",
description="Maximum longitude (horizontal angle) for the equirectangular lens",
min=-math.pi, max=math.pi,
subtype='ANGLE',