Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 30ef03d8 authored by Satoshi Kataoka's avatar Satoshi Kataoka
Browse files

Tweak vertical gap of Emoji palette

Bug: 11140087
Change-Id: I8163568a9d7f9d321148001e161c672f78796c96
parent 83994ad6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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