mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Add debug message to detect unusual zero width condition
Bug: 8452013 Change-Id: I0169dc6b0d08d1b4d9e01a5fa2ad01e9db292bda
This commit is contained in:
parent
f67a388197
commit
bd8e92d843
@ -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()) {
|
||||
|
Loading…
Reference in New Issue
Block a user