* "preview_aa_samples" minimum should be 0, not 1.
This commit is contained in:
Thomas Dinges 2012-06-13 16:15:42 +00:00
parent 0a2da1ee45
commit 7818b94016

@ -95,7 +95,7 @@ class CyclesRenderSettings(bpy.types.PropertyGroup):
cls.preview_aa_samples = IntProperty( cls.preview_aa_samples = IntProperty(
name="AA Samples", name="AA Samples",
description="Number of antialiasing samples to render in the viewport, unlimited if 0", description="Number of antialiasing samples to render in the viewport, unlimited if 0",
min=1, max=10000, min=0, max=10000,
default=4, default=4,
) )
cls.diffuse_samples = IntProperty( cls.diffuse_samples = IntProperty(