Fix removing delete key background in emoji view (#82)

This commit is contained in:
BlackyHawky 2023-08-16 20:10:21 +02:00 committed by GitHub
parent a20a09e05b
commit cbff614672
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -530,7 +530,7 @@ public final class EmojiPalettesView extends LinearLayout
}
private void onTouchCanceled(final View v) {
v.setBackgroundColor(Color.TRANSPARENT);
v.setPressed(false);
}
}
}