RemoteDrawingEngine: Fix position of gradient in FillShape.

It wasn't added at the end.
This commit is contained in:
Michael Lotz
2017-11-21 22:18:17 +01:00
parent 91c1d3dbb3
commit df55bcf5a0
@@ -767,9 +767,9 @@ RemoteDrawingEngine::FillShape(const BRect& bounds, int32 opCount,
message.AddList(opList, opCount);
message.Add(pointCount);
message.AddList(pointList, pointCount);
message.AddGradient(gradient);
message.Add(viewToScreenOffset);
message.Add(viewScale);
message.AddGradient(gradient);
}