Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Fix Login select glitch (#3857)
Browse files Browse the repository at this point in the history
  • Loading branch information
keianhzo authored Aug 21, 2020
1 parent f6e0604 commit 9fd870c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/src/main/res/layout/prompt_select_login.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
android:background="@drawable/dialog_background"
android:paddingStart="@dimen/autofill_dialog_padding_sides"
android:paddingTop="@dimen/autofill_dialog_padding_top"
android:paddingEnd="@dimen/autofill_dialog_padding_sides"
android:paddingEnd="44dp"
android:paddingBottom="@dimen/autofill_dialog_padding_bottom">

<FrameLayout
Expand All @@ -32,7 +32,7 @@
<org.mozilla.vrbrowser.ui.views.CustomRecyclerView
android:id="@+id/loginsList"
style="@style/customRecyclerViewStyle"
android:layout_width="match_parent"
android:layout_width="340dp"
android:layout_height="match_parent"
android:layout_below="@id/titleContainer"
android:layout_above="@+id/buttonsLayout"
Expand Down
4 changes: 3 additions & 1 deletion app/src/main/res/layout/prompt_select_login_item.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@

<FrameLayout
android:layout_width="match_parent"
android:layout_height="@dimen/library_item_row_height">
android:layout_height="@dimen/library_item_row_height"
android:layout_marginEnd="20dp"
android:background="@color/asphalt">

<RelativeLayout
android:id="@+id/layout"
Expand Down

0 comments on commit 9fd870c

Please sign in to comment.