mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-17 13:19:52 +01:00
For some reason, the toolbar icon has a wrong layout direction, so the autoMirrored attribute doesn't take any effect.
16 lines
484 B
XML
16 lines
484 B
XML
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:width="24dp"
|
|
android:height="24dp"
|
|
android:viewportHeight="24.0"
|
|
android:viewportWidth="24.0">
|
|
<!-- Workaround for toolbar icons failing to apply proper layout direction -->
|
|
<group
|
|
android:pivotX="12"
|
|
android:pivotY="12"
|
|
android:rotation="180">
|
|
<path
|
|
android:fillColor="#FFFFFFFF"
|
|
android:pathData="M2.01,21L23,12 2.01,3 2,10l15,2 -15,2z"/>
|
|
</group>
|
|
</vector>
|