Fix LSS->Markup transition in RTL

We were constraining the transition view to the start, but
adjusting its location using paddingLeft, etc, which led to
incorrect behavior in RTL. Instead constrain to left so that
everything is consistent.

Bug: 190757843
Fix: 190757843
Test: manual
Change-Id: I07becea2ee0e11d74a1aac350aa7d0693d712bfb
This commit is contained in:
Miranda Kephart
2021-07-02 14:38:59 -04:00
parent 1e1aef37c8
commit 8418b0ad88

View File

@@ -159,7 +159,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="@id/preview"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
android:scaleType="centerCrop"
android:visibility="invisible"
/>