diff options
| author | Bananeweizen <Bananeweizen@gmx.de> | 2011-12-31 15:07:32 +0100 |
|---|---|---|
| committer | Bananeweizen <Bananeweizen@gmx.de> | 2011-12-31 15:07:32 +0100 |
| commit | 3867d2f67604c0ef0c5cf875c63c6d758d79ecee (patch) | |
| tree | c68bdfe957a6949795a2b4857a4365d644d975da | |
| parent | c67469f468164f0ad2672e89a3bea990d1483334 (diff) | |
| download | cgeo-3867d2f67604c0ef0c5cf875c63c6d758d79ecee.zip cgeo-3867d2f67604c0ef0c5cf875c63c6d758d79ecee.tar.gz cgeo-3867d2f67604c0ef0c5cf875c63c6d758d79ecee.tar.bz2 | |
fix #757: circles and colors
| -rw-r--r-- | main/src/cgeo/geocaching/maps/CachesOverlay.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/maps/CachesOverlay.java b/main/src/cgeo/geocaching/maps/CachesOverlay.java index 35f12ae..607a595 100644 --- a/main/src/cgeo/geocaching/maps/CachesOverlay.java +++ b/main/src/cgeo/geocaching/maps/CachesOverlay.java @@ -117,7 +117,7 @@ public class CachesOverlay extends AbstractItemizedOverlay { if (blockedCircle == null) { blockedCircle = new Paint(); blockedCircle.setAntiAlias(true); - blockedCircle.setStrokeWidth(1.0f); + blockedCircle.setStrokeWidth(2.0f); blockedCircle.setARGB(127, 0, 0, 0); blockedCircle.setPathEffect(new DashPathEffect(new float[] { 3, 2 }, 0)); } |
