From c8d7265c5a5a0acc4872a99f889871ec9a8ff425 Mon Sep 17 00:00:00 2001 From: tibbi Date: Sat, 2 Jan 2021 12:37:26 +0100 Subject: [PATCH] make sure there is no stroke at letter placeholders --- build.gradle | 2 +- .../simplemobiletools/commons/helpers/SimpleContactsHelper.kt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 017093aa8..87826dc34 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ buildscript { propMinSdkVersion = 21 propTargetSdkVersion = propCompileSdkVersion propVersionCode = 1 - propVersionName = '5.32.20' + propVersionName = '5.32.21' kotlin_version = '1.4.21' } diff --git a/commons/src/main/kotlin/com/simplemobiletools/commons/helpers/SimpleContactsHelper.kt b/commons/src/main/kotlin/com/simplemobiletools/commons/helpers/SimpleContactsHelper.kt index ebe561932..da809ccf7 100644 --- a/commons/src/main/kotlin/com/simplemobiletools/commons/helpers/SimpleContactsHelper.kt +++ b/commons/src/main/kotlin/com/simplemobiletools/commons/helpers/SimpleContactsHelper.kt @@ -272,6 +272,7 @@ class SimpleContactsHelper(val context: Context) { isAntiAlias = true textAlign = Paint.Align.CENTER textSize = wantedTextSize + style = Paint.Style.FILL } canvas.drawCircle(size / 2f, size / 2f, size / 2f, circlePaint)