From e7f523325bdac580e28b6b4eca5e5badfbbd114e Mon Sep 17 00:00:00 2001 From: Thomas Beck <software@plasmasolutions.de> Date: Sun, 21 Jun 2015 23:51:00 +0200 Subject: [PATCH] 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. --- render_auto_tile_size.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/render_auto_tile_size.py b/render_auto_tile_size.py index bd7b6b22c..9941dfd93 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') -- GitLab