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

Commit 6dac27ee authored by Ken Wakasa's avatar Ken Wakasa Committed by Android (Google) Code Review
Browse files

Merge "Tweak vertical gap of Emoji palette. DO NOT MERGE" into klp-dev

parents f9d7d17f 3a9ae655
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