Skip to content

Commit 38311ed

Browse files
committed
Skipped checks in default bokeh blur constructor
1 parent 1f02dd0 commit 38311ed

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/ImageSharp/Processing/Processors/Convolution/BokehBlurProcessor.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,10 @@ public sealed class BokehBlurProcessor : IImageProcessor
2929
/// Initializes a new instance of the <see cref="BokehBlurProcessor"/> class.
3030
/// </summary>
3131
public BokehBlurProcessor()
32-
: this(DefaultRadius, DefaultComponents, DefaultGamma)
3332
{
33+
this.Radius = DefaultRadius;
34+
this.Components = DefaultComponents;
35+
this.Gamma = DefaultGamma;
3436
}
3537

3638
/// <summary>

0 commit comments

Comments
 (0)