Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 01b8ebf2 authored by Beth Thibodeau's avatar Beth Thibodeau
Browse files

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
parent 33c3fc34
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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"