Restored delete key color in emoji view (#197)

This commit is contained in:
BlackyHawky 2023-10-17 10:27:49 +02:00 committed by GitHub
parent 997bda22c2
commit 10f6e30e44
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -246,6 +246,7 @@ public final class EmojiPalettesView extends LinearLayout
// deleteKey depends only on OnTouchListener.
mDeleteKey = findViewById(R.id.emoji_keyboard_delete);
mDeleteKey.setBackgroundResource(mFunctionalKeyBackgroundId);
mDeleteKey.setColorFilter(colors.getKeyTextFilter());
mDeleteKey.setTag(Constants.CODE_DELETE);
mDeleteKey.setOnTouchListener(mDeleteKeyOnTouchListener);