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:
authorPhilipp Oeser <info@graphics-engineer.com>2014-10-13 17:55:26 +0400
committerPhilipp Oeser <info@graphics-engineer.com>2014-10-13 17:55:26 +0400
commit9edfa1364971d41424644ad9499f80187ebaa553 (patch)
treef4cd71456f1c546bf4b57706e2090557ee885207 /uv_bake_texture_to_vcols.py
parent77c3275cf83478352240740b80739747dca9fe0c (diff)
fix warnings with UI description
Diffstat (limited to 'uv_bake_texture_to_vcols.py')
-rw-r--r--uv_bake_texture_to_vcols.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/uv_bake_texture_to_vcols.py b/uv_bake_texture_to_vcols.py
index b6bad671..0dc5e549 100644
--- a/uv_bake_texture_to_vcols.py
+++ b/uv_bake_texture_to_vcols.py
@@ -69,7 +69,7 @@ class UV_OT_bake_texture_to_vcols(bpy.types.Operator):
items=mappingModes,
default="CLIP",
name="Mapping",
- description="The mode to use for baking vertices who's UV-coordinates are out of bounds.")
+ description="The mode to use for baking vertices who's UV-coordinates are out of bounds")
blendingModes = [("MIX", "Mix", ""),
("ADD", "Add", ""),
@@ -95,8 +95,8 @@ class UV_OT_bake_texture_to_vcols(bpy.types.Operator):
name="Blend Type",
description="The blending mode to use when baking")
- mirror_x = BoolProperty(name="Mirror X", description="Mirror the image on the X-axis.")
- mirror_y = BoolProperty(name="Mirror Y", description="Mirror the image on the Y-axis.")
+ mirror_x = BoolProperty(name="Mirror X", description="Mirror the image on the X-axis")
+ mirror_y = BoolProperty(name="Mirror Y", description="Mirror the image on the Y-axis")
@classmethod
def poll(self, context):