Skip to content

Commit

Permalink
Fix bug when changing line color (see maplibre#448)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Berthet committed Oct 6, 2021
1 parent 16424a0 commit 6619cfe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public void setLineOpacity(float lineOpacity) {

@Override
public void setLineColor(String lineColor) {
line.setLineColor(ColorUtils.rgbaToColor(lineColor));
line.setLineColor(lineColor);
}

@Override
Expand Down

0 comments on commit 6619cfe

Please sign in to comment.