mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-27 12:05:22 +00:00
Remove gray placeholder squares while loading emoji
This commit is contained in:
parent
3597915d17
commit
9e74b5c892
@ -365,15 +365,12 @@ public class Emoji {
|
||||
private final int index;
|
||||
private final int page;
|
||||
private final int emojiSize;
|
||||
private static final Paint placeholderPaint;
|
||||
private static final Paint paint;
|
||||
private Bitmap bmp;
|
||||
|
||||
static {
|
||||
paint = new Paint();
|
||||
paint.setFilterBitmap(true);
|
||||
placeholderPaint = new Paint();
|
||||
placeholderPaint.setColor(0x55000000);
|
||||
}
|
||||
|
||||
public EmojiDrawable(DrawInfo info, int emojiSize) {
|
||||
@ -386,7 +383,6 @@ public class Emoji {
|
||||
public void draw(Canvas canvas) {
|
||||
if (bitmaps[page] == null) {
|
||||
Log.w("Emoji", "bitmap for this page was null");
|
||||
canvas.drawRect(getBounds(), placeholderPaint);
|
||||
return;
|
||||
}
|
||||
if (bmp == null) {
|
||||
|
Loading…
Reference in New Issue
Block a user