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

Commit ab5e959a authored by Raff Tsai's avatar Raff Tsai Committed by android-build-merger
Browse files

Fix icon color in dark mode

am: e30f61f7

Change-Id: I04b540f4ed116601ea72a82dbd79559575e23752
parents e6484aba e30f61f7
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -17,7 +17,8 @@ Copyright (C) 2015 The Android Open Source Project
        android:width="24dp"
        android:height="24dp"
        android:viewportWidth="24.0"
        android:viewportHeight="24.0">
        android:viewportHeight="24.0"
        android:tint="?android:attr/colorControlNormal">
    <path
        android:fillColor="#FF000000"
        android:pathData="M5 17h14v2H5zm7,-12L5.33 15h13.34z"/>
+0 −1
Original line number Diff line number Diff line
@@ -130,7 +130,6 @@ public class StorageVolumePreference extends Preference {
    public void onBindViewHolder(PreferenceViewHolder view) {
        final ImageView unmount = (ImageView) view.findViewById(R.id.unmount);
        if (unmount != null) {
            unmount.setImageTintList(ColorStateList.valueOf(Color.parseColor("#8a000000")));
            unmount.setOnClickListener(mUnmountListener);
        }