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

Commit 4c464b9b authored by Fahim Salam Chowdhury's avatar Fahim Salam Chowdhury 👽
Browse files

fix UI issues introduced due to merge with upstream

parent d9ed520b
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -118,9 +118,15 @@ android {
            resources.srcDirs = ['res']
        }
    }

    aaptOptions {
        additionalParameters '-I', 'e-ui-sdk.jar'
    }
}

dependencies {
    compileOnly files("e-ui-sdk.jar")

    // AndroidX - https://developer.android.com/jetpack/androidx/releases

    // see https://developer.android.com/jetpack/androidx/releases/appcompat
+1 −1
Original line number Diff line number Diff line
@@ -20,6 +20,6 @@
    <gradient
        android:angle="90.0"
        android:endColor="@color/transparent"
        android:startColor="@color/primary_text" />
        android:startColor="@color/foreground_color" />

</shape>
+1 −1
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@
    <path
        android:pathData="M0 0h24v24H0z" />
    <path
        android:fillColor="@color/accent"
        android:fillColor="@color/color_default_icon"
        android:pathData="M14 10H2v2h12v-2zm0-4H2v2h12V6zm4 8v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM2
16h8v-2H2v2z" />
</vector>
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
    android:viewportHeight="24">

    <path
        android:fillColor="@color/accent"
        android:fillColor="@color/color_default_icon"
        android:pathData="M6 18l8.5-6L6 6v12zm2-8.14L11.03 12 8 14.14V9.86zM16 6h2v12h-2z"
        android:fillType="evenOdd" />
</vector>
+6 −2
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     Copyright (C) 2021 The LineageOS Project

@@ -18,7 +19,10 @@
    android:height="24dp"
    android:viewportWidth="24"
    android:viewportHeight="24">

    <path
        android:fillColor="@color/default_text_color"
        android:pathData="M6,19h4L10,5L6,5v14zM14,5v14h4L18,5h-4z" />
        android:fillColor="@color/player_control_color"
        android:pathData="M17 6H15V18H17V6ZM15 4H13V6V18V20H15H17H19V18V6V4H17H15ZM8 6H6V18H8V6ZM6 4H4V6V18V20H6H8H10V18V6V4H8H6Z"
        android:fillType="evenOdd" />
</vector>
Loading