Skip to content
Snippets Groups Projects
Commit aafca836 authored by Duncan McNamara's avatar Duncan McNamara Committed by Nicolas Pomepuy
Browse files

Albums: fix item emoji icon superposition

(cherry picked from commit 82f7c037)
parent 54d4ec43
No related branches found
No related tags found
No related merge requests found
......@@ -120,7 +120,7 @@
android:layout_height="wrap_content"
android:background="@drawable/rounded_corners_black_more_transparent"
android:padding="3dp"
android:visibility="@{isNetwork ? View.VISIBLE : View.GONE}"
android:visibility="@{isNetwork & isPresent? View.VISIBLE : View.GONE}"
vlc:layout_constraintBottom_toBottomOf="parent"
vlc:layout_constraintEnd_toStartOf="@id/item_more"
vlc:layout_constraintTop_toTopOf="parent"
......@@ -132,7 +132,7 @@
android:layout_height="wrap_content"
android:background="@drawable/rounded_corners_black_more_transparent"
android:padding="3dp"
android:visibility="@{isSD ? View.VISIBLE : View.GONE}"
android:visibility="@{isSD & isPresent ? View.VISIBLE : View.GONE}"
vlc:layout_constraintBottom_toBottomOf="parent"
vlc:layout_constraintEnd_toStartOf="@id/item_more"
vlc:layout_constraintTop_toTopOf="parent"
......@@ -144,7 +144,7 @@
android:layout_height="wrap_content"
android:background="@drawable/rounded_corners_black_more_transparent"
android:padding="3dp"
android:visibility="@{isOTG ? View.VISIBLE : View.GONE}"
android:visibility="@{isOTG & !isPresent ? View.VISIBLE : View.GONE}"
vlc:layout_constraintBottom_toBottomOf="parent"
vlc:layout_constraintEnd_toStartOf="@id/item_more"
vlc:layout_constraintTop_toTopOf="parent"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment