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

Commit 85dec741 authored by Ken Wakasa's avatar Ken Wakasa Committed by Android Git Automerger
Browse files

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

* commit '6dac27ee':
  Tweak vertical gap of Emoji palette. DO NOT MERGE
parents 07baf17c 6dac27ee
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