Merge pull request #2786 from vector-im/feature/bma/rtl
Feature/bma/rtl
This commit is contained in:
commit
93890343b6
|
@ -11,6 +11,7 @@ Bugfix 🐛:
|
||||||
- Bug in WidgetContent.computeURL() (#2767)
|
- Bug in WidgetContent.computeURL() (#2767)
|
||||||
- Duplicate thumbs | Mobile reactions for 👍 and 👎 are not the same as web (#2776)
|
- Duplicate thumbs | Mobile reactions for 👍 and 👎 are not the same as web (#2776)
|
||||||
- Join room by alias other federation error (#2778)
|
- Join room by alias other federation error (#2778)
|
||||||
|
- RTL: some arrows should be rotated in RTL (#2757)
|
||||||
|
|
||||||
Translations 🗣:
|
Translations 🗣:
|
||||||
-
|
-
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:width="7dp"
|
||||||
|
android:height="12dp"
|
||||||
|
android:viewportWidth="7"
|
||||||
|
android:viewportHeight="12">
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:fillType="evenOdd"
|
||||||
|
android:pathData="M6,11l-5,-5 5,-5"
|
||||||
|
android:strokeWidth="2"
|
||||||
|
android:strokeColor="#2E2F32"
|
||||||
|
android:strokeLineCap="round"
|
||||||
|
android:strokeLineJoin="round"
|
||||||
|
tools:strokeColor="#FFAF0F" />
|
||||||
|
</vector>
|
|
@ -1,14 +1,16 @@
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:width="7dp"
|
android:width="7dp"
|
||||||
android:height="12dp"
|
android:height="12dp"
|
||||||
android:viewportWidth="7"
|
android:viewportWidth="7"
|
||||||
android:viewportHeight="12">
|
android:viewportHeight="12">
|
||||||
<path
|
<path
|
||||||
android:pathData="M1,11l5,-5 -5,-5"
|
|
||||||
android:strokeLineJoin="round"
|
|
||||||
android:strokeWidth="2"
|
|
||||||
android:fillColor="#00000000"
|
android:fillColor="#00000000"
|
||||||
android:fillType="evenOdd"
|
android:fillType="evenOdd"
|
||||||
|
android:pathData="M1,11l5,-5 -5,-5"
|
||||||
|
android:strokeWidth="2"
|
||||||
android:strokeColor="#2E2F32"
|
android:strokeColor="#2E2F32"
|
||||||
android:strokeLineCap="round"/>
|
android:strokeLineCap="round"
|
||||||
|
android:strokeLineJoin="round"
|
||||||
|
tools:strokeColor="#FFAF0F" />
|
||||||
</vector>
|
</vector>
|
||||||
|
|
|
@ -84,6 +84,7 @@
|
||||||
android:insetRight="0dp"
|
android:insetRight="0dp"
|
||||||
android:insetBottom="0dp"
|
android:insetBottom="0dp"
|
||||||
android:padding="0dp"
|
android:padding="0dp"
|
||||||
|
android:rotationY="@integer/rtl_mirror_flip"
|
||||||
app:cornerRadius="17dp"
|
app:cornerRadius="17dp"
|
||||||
app:icon="@drawable/ic_qr_code_add"
|
app:icon="@drawable/ic_qr_code_add"
|
||||||
app:iconGravity="textStart"
|
app:iconGravity="textStart"
|
||||||
|
|
Loading…
Reference in New Issue