2
0
mirror of https://github.com/fork-maintainers/iceraven-browser synced 2024-11-03 23:15:31 +00:00

[fenix] Issue https://github.com/mozilla-mobile/fenix/issues/21714: Login button visibility fix on saved logins page

This commit is contained in:
Mayank Agarwal 2021-10-06 01:07:44 +05:30 committed by Sebastian Kaspari
parent bf76a1871c
commit af4a03a0f3

View File

@ -56,7 +56,8 @@
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/saved_logins_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:visibility="gone"
tools:listitem="@layout/logins_item" />
@ -65,6 +66,7 @@
layout="@layout/layout_add_login"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@id/saved_logins_list" />