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:
authorCampbell Barton <ideasman42@gmail.com>2013-02-07 08:25:53 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-02-07 08:25:53 +0400
commit9e11509b70067c0c24fec6f1c38e7c4b93ba7f06 (patch)
treef8540bde9c30863a530ad072ffed51060799155b /render_povray/__init__.py
parent05b77ae4f880355178641584939cfb87d6cc7638 (diff)
make option for applying modifiers consistent
Diffstat (limited to 'render_povray/__init__.py')
-rw-r--r--render_povray/__init__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/render_povray/__init__.py b/render_povray/__init__.py
index d9438b39..e5e45600 100644
--- a/render_povray/__init__.py
+++ b/render_povray/__init__.py
@@ -74,16 +74,16 @@ class RenderPovSettingsScene(PropertyGroup):
name="Scene Name",
description="Name of POV-Ray scene to create. Empty name will use the name of "
"the blend file",
- default="", maxlen=1024)
+ maxlen=1024)
scene_path = StringProperty(
name="Export scene path",
# description="Path to directory where the exported scene (POV and INI) is created", # Bug in POV-Ray RC3
description="Path to directory where the files are created",
- default="", maxlen=1024, subtype="DIR_PATH")
+ maxlen=1024, subtype="DIR_PATH")
renderimage_path = StringProperty(
name="Rendered image path",
description="Full path to directory where the rendered image is saved",
- default="", maxlen=1024, subtype="DIR_PATH")
+ maxlen=1024, subtype="DIR_PATH")
list_lf_enable = BoolProperty(
name="LF in lists",
description="Enable line breaks in lists (vectors and indices). Disabled: "
@@ -140,7 +140,7 @@ class RenderPovSettingsScene(PropertyGroup):
name="Command Line Switches",
description="Command line switches consist of a + (plus) or - (minus) sign, followed "
"by one or more alphabetic characters and possibly a numeric value",
- default="", maxlen=500)
+ maxlen=500)
antialias_enable = BoolProperty(
name="Anti-Alias", description="Enable Anti-Aliasing",