Fix more suggestion window asymmetry bug in N7.

Bug: 7711822
Change-Id: I63ba13b1c160cf55b8820a08e6e28fa666dd2580
main
Tom Ouyang 2012-12-13 20:57:50 -08:00
parent 1f4f404e1f
commit be68b41ccb
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ public class MoreKeysKeyboardView extends KeyboardView implements MoreKeysPanel
parentView.getLocationInWindow(mCoordinates);
// Ensure the horizontal position of the panel does not extend past the screen edges.
final int maxX = parentView.getMeasuredWidth() - container.getMeasuredWidth();
final int panelX = Math.max(0, Math.min(maxX, x + CoordinateUtils.x(mCoordinates)));
final int panelX = Math.max(0, Math.min(maxX, x)) + CoordinateUtils.x(mCoordinates);
final int panelY = y + CoordinateUtils.y(mCoordinates);
container.setX(panelX);
container.setY(panelY);