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

Commit 206ce637 authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka Committed by Android Git Automerger
Browse files

am bd8e92d8: Add debug message to detect unusual zero width condition

* commit 'bd8e92d8':
  Add debug message to detect unusual zero width condition
parents 93fe83a1 bd8e92d8
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -291,10 +291,22 @@ public final class MoreKeysKeyboard extends Keyboard {
                // adjusted with their bottom paddings deducted.
                width = keyPreviewDrawParams.mPreviewVisibleWidth;
                height = keyPreviewDrawParams.mPreviewVisibleHeight + mParams.mVerticalGap;
                // TODO: Remove this check.
                if (width == 0) {
                    throw new IllegalArgumentException(
                            "Zero width key detected: " + parentKey + " in " + parentKeyboard.mId);
                }
            } else {
                width = getMaxKeyWidth(parentKeyboardView, parentKey, mParams.mDefaultKeyWidth,
                        context.getResources());
                height = parentKeyboard.mMostCommonKeyHeight;
                // TODO: Remove this check.
                if (width == 0) {
                    throw new IllegalArgumentException(
                            "Zero width calculated: " + parentKey
                            + " moreKeys=" + java.util.Arrays.toString(parentKey.mMoreKeys)
                            + " in " + parentKeyboard.mId);
                }
            }
            final int dividerWidth;
            if (parentKey.needsDividersInMoreKeys()) {