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:
authorThomas Beck <software@plasmasolutions.de>2015-06-22 00:51:00 +0300
committerThomas Beck <software@plasmasolutions.de>2015-06-22 21:18:22 +0300
commite7f523325bdac580e28b6b4eca5e5badfbbd114e (patch)
treefca8773e00e1df2e7ee28e8b7a1072c1015246ec /render_auto_tile_size.py
parentd30b480adef09eec91cc68179a27b6a7d5a743ad (diff)
Fix unreported: Plugin auto tile size gives warning on activation
"RNA_def_property_ui_text: 'thread_error_correct' '' description ends with a '.' !" ... issue was a description with a dot at the end.
Diffstat (limited to 'render_auto_tile_size.py')
-rw-r--r--render_auto_tile_size.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/render_auto_tile_size.py b/render_auto_tile_size.py
index bd7b6b22..9941dfd9 100644
--- a/render_auto_tile_size.py
+++ b/render_auto_tile_size.py
@@ -121,7 +121,7 @@ class AutoTileSizeSettings(bpy.types.PropertyGroup):
thread_error_correct = bpy.props.BoolProperty(
name="Fix",
default=True,
- description="Reduce the tile size so that all your available threads are used.",
+ description="Reduce the tile size so that all your available threads are used",
update=_update_tile_size)
# Internally used props (not for GUI)
@@ -384,7 +384,7 @@ def ui_layout(engine, layout, context):
if settings.threads_error:
row = sub.row(align=True)
row.alignment = 'CENTER'
- row.label(text="Warning: Fewer tiles than threads.", icon='ERROR')
+ row.label(text="Warning: Fewer tiles than threads", icon='ERROR')
row.prop(settings, 'thread_error_correct')