Skip to content

Commit

Permalink
Merge conflict fix
Browse files Browse the repository at this point in the history
  • Loading branch information
flabbet committed Apr 10, 2023
1 parent 4f5a0cf commit 4d6aef0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ChunkyImageLib/Operations/PixelOperation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public IDrawOperation AsMirrored(double? verAxisX, double? horAxisY)
if (verAxisX is not null)
pixelRect = (RectI)pixelRect.ReflectX((double)verAxisX).Round();
if (horAxisY is not null)
pixelRect = pixelRect.ReflectY((int)horAxisY);
pixelRect = (RectI)pixelRect.ReflectY((double)horAxisY);
if (_colorProcessor != null)
{
return new PixelOperation(pixelRect.Pos, _colorProcessor, blendMode);
Expand Down

0 comments on commit 4d6aef0

Please sign in to comment.