Skip to content

Commit 3af32af

Browse files
authored
Merge pull request #349 from JacobDoucet/patch-1
fix: updating polyline colors
2 parents 118d43c + 0225532 commit 3af32af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/map-view.android.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -946,7 +946,7 @@ export class Polyline extends PolylineBase {
946946
set color(value: Color) {
947947
this._color = value;
948948
if (this._isReal) {
949-
this._android.setStrokeColor(value.android);
949+
this._android.setColor(value.android);
950950
} else {
951951
this._android.color(value.android);
952952
}

0 commit comments

Comments
 (0)