From 8df55d069da2b5ae4ba60dbf3f4b1e7d6dc4681b Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Fri, 21 Sep 2012 17:27:38 -0400 Subject: [PATCH] make the checkmarks a bit more prominent --- src/com/fsck/k9/view/ColorChip.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/com/fsck/k9/view/ColorChip.java b/src/com/fsck/k9/view/ColorChip.java index 040198c9e..389869c83 100644 --- a/src/com/fsck/k9/view/ColorChip.java +++ b/src/com/fsck/k9/view/ColorChip.java @@ -45,6 +45,7 @@ public class ColorChip { CHECKMARK.moveTo(0f,10f); CHECKMARK.lineTo(6f,16f); + CHECKMARK.moveTo(6f,15f); CHECKMARK.lineTo(16f,2f); } @@ -55,7 +56,11 @@ public class ColorChip { mDrawable = new ShapeDrawable(new PathShape(shape, 16f, 16f)); - mDrawable.getPaint().setStrokeWidth(1); + if (shape.equals(CHECKMARK)) { + mDrawable.getPaint().setStrokeWidth(3); + } else { + mDrawable.getPaint().setStrokeWidth(1); + } if (messageRead) { // Read messages get an outlined circle mDrawable.getPaint().setStyle(Paint.Style.STROKE);