aboutsummaryrefslogtreecommitdiffstats
path: root/main/src
diff options
context:
space:
mode:
authorBananeweizen <Bananeweizen@gmx.de>2011-12-31 15:07:32 +0100
committerBananeweizen <Bananeweizen@gmx.de>2011-12-31 15:07:32 +0100
commit3867d2f67604c0ef0c5cf875c63c6d758d79ecee (patch)
treec68bdfe957a6949795a2b4857a4365d644d975da /main/src
parentc67469f468164f0ad2672e89a3bea990d1483334 (diff)
downloadcgeo-3867d2f67604c0ef0c5cf875c63c6d758d79ecee.zip
cgeo-3867d2f67604c0ef0c5cf875c63c6d758d79ecee.tar.gz
cgeo-3867d2f67604c0ef0c5cf875c63c6d758d79ecee.tar.bz2
fix #757: circles and colors
Diffstat (limited to 'main/src')
-rw-r--r--main/src/cgeo/geocaching/maps/CachesOverlay.java2
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));
}