mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-05-17 15:32:48 +00:00
fix white icon color for zwnj (only available on few layouts)
This commit is contained in:
parent
fce6805018
commit
1e79e3e2f6
1 changed files with 2 additions and 2 deletions
|
@ -627,8 +627,8 @@ 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
|
||||
} else if (key.getCode() == Constants.CODE_SPACE || key.getCode() == 0x200C) {
|
||||
// set color of default number pad space bar icon for Holo style, or for zero-width non-joiner (zwnj) on some layouts like nepal
|
||||
icon.setColorFilter(mColors.getKeyTextFilter());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue