* commit '85dec741a70bf455d9aae583982580dc79df0209': Tweak vertical gap of Emoji palette. DO NOT MERGE
This commit is contained in:
commit
56e21a02f0
1 changed files with 2 additions and 2 deletions
|
@ -184,12 +184,12 @@ public class DynamicGridKeyboard extends Keyboard {
|
|||
|
||||
private int getKeyY0(final int index) {
|
||||
final int row = index / mColumnsNum;
|
||||
return row * mVerticalStep;
|
||||
return row * mVerticalStep + mVerticalGap / 2;
|
||||
}
|
||||
|
||||
private int getKeyY1(final int index) {
|
||||
final int row = index / mColumnsNum + 1;
|
||||
return row * mVerticalStep;
|
||||
return row * mVerticalStep + mVerticalGap / 2;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue