Fix alignment for RTL layout

Expanded layout already uses wrap_content which does display correctly
in RTL, so fixed the collapsed layout to do the same

Fixes: 204032375
Test: visual
Change-Id: Ifcdd9c1d90e03ee54789421c0d6eb1dd3abd4a2f
This commit is contained in:
Beth Thibodeau
2021-11-02 13:32:29 -04:00
parent 33c3fc3421
commit 01b8ebf264

View File

@@ -58,7 +58,7 @@
<!-- Song name -->
<Constraint
android:id="@+id/header_title"
android:layout_width="0dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/qs_media_info_margin"
android:layout_marginEnd="@dimen/qs_center_guideline_padding"
@@ -71,7 +71,7 @@
<!-- Artist name -->
<Constraint
android:id="@+id/header_artist"
android:layout_width="0dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constrainedWidth="true"
android:layout_marginTop="@dimen/qs_media_info_spacing"