From c870c5acbc21d6ba3bdc3e9b63fa26e54b3dd9c4 Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Sat, 24 Nov 2012 17:44:07 -0500 Subject: [PATCH] make the checkmark a little wider. --- src/com/fsck/k9/view/ColorChip.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/fsck/k9/view/ColorChip.java b/src/com/fsck/k9/view/ColorChip.java index c9217a93e..3dcbeddc7 100644 --- a/src/com/fsck/k9/view/ColorChip.java +++ b/src/com/fsck/k9/view/ColorChip.java @@ -67,7 +67,7 @@ public class ColorChip { mDrawable = new ShapeDrawable(new PathShape(shape, 320f, 320f)); } if (shape.equals(CHECKMARK)) { - mDrawable.getPaint().setStrokeWidth(30); + mDrawable.getPaint().setStrokeWidth(50); } else { mDrawable.getPaint().setStrokeWidth(20); }