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:
Diffstat (limited to 'render_povray')
-rw-r--r--render_povray/__init__.py2
-rw-r--r--render_povray/ui.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/render_povray/__init__.py b/render_povray/__init__.py
index e346fc16..91764960 100644
--- a/render_povray/__init__.py
+++ b/render_povray/__init__.py
@@ -72,7 +72,7 @@ def register():
default="", maxlen=1024, subtype="DIR_PATH")
Scene.pov_list_lf_enable = BoolProperty(
name="LF in lists",
- description="Enable line brakes in lists (vectors and indices). Disabled: lists are exported in one line.",
+ description="Enable line breaks in lists (vectors and indices). Disabled: lists are exported in one line.",
default=True)
# Not a real pov option, just to know if we should write
diff --git a/render_povray/ui.py b/render_povray/ui.py
index 722622e1..4a68bc70 100644
--- a/render_povray/ui.py
+++ b/render_povray/ui.py
@@ -182,7 +182,7 @@ class RENDER_PT_povray_export_settings(RenderButtonsPanel, bpy.types.Panel):
col = split.column()
col.prop(scene, "pov_comments_enable", text="Comments")
col = split.column()
- col.prop(scene, "pov_list_lf_enable", text="Line brakes in lists")
+ col.prop(scene, "pov_list_lf_enable", text="Line breaks in lists")
class RENDER_PT_povray_render_settings(RenderButtonsPanel, bpy.types.Panel):