Style.Builder: make strokeColor public

This commit is contained in:
Emux 2019-11-20 20:23:02 +02:00
parent 327d6f1466
commit 6ed00d9a94
No known key found for this signature in database
GPG Key ID: 64ED9980896038C3

View File

@ -1,6 +1,6 @@
/* /*
* Copyright 2014 Hannes Janetzek * Copyright 2014 Hannes Janetzek
* Copyright 2016-2018 devemux86 * Copyright 2016-2019 devemux86
* *
* This file is part of the OpenScienceMap project (http://www.opensciencemap.org). * This file is part of the OpenScienceMap project (http://www.opensciencemap.org).
* *
@ -94,7 +94,7 @@ public class Style {
public static class Builder { public static class Builder {
private float strokeWidth = 1f; private float strokeWidth = 1f;
private int strokeColor = Color.GRAY; public int strokeColor = Color.GRAY;
private int fillColor = Color.GRAY; private int fillColor = Color.GRAY;
private float fillAlpha = 0.25f; private float fillAlpha = 0.25f;