enabled anti alising for tiles

iNPUTmice created

Change summary

src/eu/siacs/conversations/utils/UIHelper.java | 1 +
1 file changed, 1 insertion(+)

Detailed changes

src/eu/siacs/conversations/utils/UIHelper.java 🔗

@@ -129,6 +129,7 @@ public class UIHelper {
 			int textColor, int left, int top, int right, int bottom) {
 		Paint tilePaint = new Paint(), textPaint = new Paint();
 		tilePaint.setColor(tileColor);
+		textPaint.setFlags(Paint.ANTI_ALIAS_FLAG);
 		textPaint.setColor(textColor);
 		textPaint.setTypeface(Typeface.create("sans-serif-light",
 				Typeface.NORMAL));