Holo style: set color of default number pad spacebar icon (#172)

This commit is contained in:
BlackyHawky 2023-09-20 22:35:21 +02:00 committed by GitHub
parent 1e292d152d
commit 2e12c161cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -619,6 +619,9 @@ public class KeyboardView extends View {
} else if (this instanceof MoreKeysKeyboardView) {
// set color filter for long press comma key, should not trigger anywhere else
icon.setColorFilter(mColors.getKeyTextFilter());
} else if (key.getCode() == Constants.CODE_SPACE) {
// set color of default number pad space bar icon for Holo style
icon.setColorFilter(mColors.getKeyTextFilter());
}
}