Disallow punctuation in icon initials.
This commit is contained in:
parent
14abbb1bbb
commit
f164ac90db
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ import java.util.regex.Pattern;
|
|||
|
||||
public class GeneratedContactPhoto implements FallbackContactPhoto {
|
||||
|
||||
private static final Pattern PATTERN = Pattern.compile("[^\\p{L}\\p{Nd}\\p{P}\\p{S}]+");
|
||||
private static final Pattern PATTERN = Pattern.compile("[^\\p{L}\\p{Nd}\\p{S}]+");
|
||||
private static final Typeface TYPEFACE = Typeface.create("sans-serif-medium", Typeface.NORMAL);
|
||||
|
||||
private final String name;
|
||||
|
|
Loading…
Add table
Reference in a new issue