regression: fixed the font size of the 0-key in 123 mode
This commit is contained in:
parent
4220bda614
commit
77bbae05d1
1 changed files with 4 additions and 4 deletions
|
|
@ -74,12 +74,12 @@ public class SoftKeyNumber0 extends SoftKeyNumber {
|
|||
|
||||
@Override
|
||||
protected float getTitleScale() {
|
||||
if (isBopomofo()) {
|
||||
return super.getTitleScale() * TITLE_SCALE_BOPOMOFO;
|
||||
if (isKorean() || (tt9 != null && tt9.isInputModeNumeric())) {
|
||||
return super.getTitleScale();
|
||||
}
|
||||
|
||||
if (isKorean()) {
|
||||
return super.getTitleScale();
|
||||
if (isBopomofo()) {
|
||||
return super.getTitleScale() * TITLE_SCALE_BOPOMOFO;
|
||||
}
|
||||
|
||||
// scale up the space character, because it is too small
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue