When applying a pending fill, also apply a pending stroke
This commit is contained in:
@@ -459,6 +459,10 @@ ol.render.canvas.Replay.prototype.replay_ = function(
|
||||
if (pendingFill) {
|
||||
this.fill_(context, viewRotation);
|
||||
pendingFill = 0;
|
||||
if (pendingStroke) {
|
||||
context.stroke();
|
||||
pendingStroke = 0;
|
||||
}
|
||||
}
|
||||
|
||||
context.fillStyle = /** @type {ol.ColorLike} */ (instruction[1]);
|
||||
|
||||
Reference in New Issue
Block a user