diff --git a/render_auto_tile_size.py b/render_auto_tile_size.py index bd7b6b22c3a5703acacef62bb8dae1506433790b..9941dfd93eeb19773a95fc779ac63c4f94dd78ab 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')