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

Commit 92a83e74 authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka Committed by Android (Google) Code Review
Browse files

Merge "Fix key preview backing view height"

parents 8673ceb0 f5fe245d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -87,7 +87,7 @@
    <fraction name="min_more_suggestions_width">90%</fraction>
    <fraction name="more_suggestions_info_ratio">18%</fraction>
    <!-- key_preview_backing_height = more_suggestions_row_height * max_more_suggestions_row -->
    <dimen name="key_preview_backing_height">160dip</dimen>
    <dimen name="key_preview_backing_height">240dip</dimen>
    <dimen name="suggestions_strip_padding">0dip</dimen>
    <dimen name="suggestion_min_width">44dip</dimen>
    <dimen name="suggestion_padding">6dip</dimen>
+3 −0
Original line number Diff line number Diff line
@@ -618,6 +618,9 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
        mSuggestionsView = (SuggestionsView) view.findViewById(R.id.suggestions_view);
        if (mSuggestionsView != null)
            mSuggestionsView.setListener(this, view);
        if (LatinImeLogger.sVISUALDEBUG) {
            mKeyPreviewBackingView.setBackgroundColor(0x10FF0000);
        }
    }

    @Override