| Index: chrome/android/shell/java/src/org/chromium/chrome/shell/omnibox/SuggestionPopup.java
|
| diff --git a/chrome/android/shell/java/src/org/chromium/chrome/shell/omnibox/SuggestionPopup.java b/chrome/android/shell/java/src/org/chromium/chrome/shell/omnibox/SuggestionPopup.java
|
| index c7e11d39773d075376369910872f0777255586b0..ba28bfe1eecca735a83b3326d172865c15b5c9a6 100644
|
| --- a/chrome/android/shell/java/src/org/chromium/chrome/shell/omnibox/SuggestionPopup.java
|
| +++ b/chrome/android/shell/java/src/org/chromium/chrome/shell/omnibox/SuggestionPopup.java
|
| @@ -112,8 +112,7 @@ public class SuggestionPopup implements OnSuggestionsReceivedListener, TextWatch
|
| int popupHeight = appRect.height() - dropDownItemHeight;
|
| if (mSuggestionsPopup != null) {
|
| int height = mSuggestionsPopupItemsCount * dropDownItemHeight;
|
| - if (height < popupHeight)
|
| - popupHeight = height;
|
| + if (height < popupHeight) popupHeight = height;
|
| }
|
| return popupHeight;
|
| }
|
|
|