Skip to content
2 changes: 1 addition & 1 deletion Pinta.Core/Classes/Document.cs
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ public void FinishSelection ()

using Context g = new (Layers.CurrentUserLayer.Surface);
selection.Clip (g);
layer.DrawWithOperator (g, Operator.Source, opacity: 1.0, transform: true);
layer.DrawWithOperator (g, Operator.Over, opacity: 1.0, transform: true);

Layers.DestroySelectionLayer ();
Workspace.Invalidate ();
Expand Down
Loading