mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-22 06:01:12 +00:00
Fixed anchors = workaround AndroidX bug
This commit is contained in:
parent
54a62ab7c4
commit
8ca208b7da
2 changed files with 5 additions and 5 deletions
|
@ -13,8 +13,8 @@
|
|||
|
||||
<View
|
||||
android:id="@+id/vwAnchorMenu"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="0dp"
|
||||
android:layout_width="1dp"
|
||||
android:layout_height="1dp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
|
|
|
@ -177,9 +177,9 @@
|
|||
|
||||
<View
|
||||
android:id="@+id/vwAnchor"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="0dp"
|
||||
app:layout_constraintEnd_toEndOf="@id/rvMessage"
|
||||
android:layout_width="1dp"
|
||||
android:layout_height="1dp"
|
||||
app:layout_constraintEnd_toEndOf="@+id/rvMessage"
|
||||
app:layout_constraintTop_toTopOf="@id/rvMessage" />
|
||||
|
||||
<eu.faircode.email.ContentLoadingProgressBar
|
||||
|
|
Loading…
Reference in a new issue