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

Commit 5732944d authored by Brian Attwell's avatar Brian Attwell
Browse files

Use ic_person_white_64dp with correct padding

UX gave me updated ic_person_white_64dp icons with the correct
amount of padding built inside them.

ag/505983 contained a work around for having ic_person_white_64dp
resources with the wrong amount of padding. This CL reverts this
work around since it is no longer needed.

Bug: 16683381
Change-Id: If0fc283f5e1cfc4e4ac3f20896652da8cd14473b
parent 2bbbfaa7
Loading
Loading
Loading
Loading
−1.07 KiB (857 B)
Loading image diff...
−737 B (659 B)
Loading image diff...
−1.52 KiB (1.01 KiB)
Loading image diff...
−1.44 KiB (1.44 KiB)
Loading image diff...
+0 −33
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2014 The Android Open Source Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->

<!-- The avatar bitmap doesn't have a large enough border to look good inside the letter
     tile drawable. <scale> reduces size of image bitmap in order to increase the perceived border
     size. -->
<scale xmlns:android="http://schemas.android.com/apk/res/android"
    android:scaleGravity="center"
    android:scaleHeight="@dimen/tile_letter_avatar_scale"
    android:scaleWidth="@dimen/tile_letter_avatar_scale" >

    <!-- Need to nest this inside <scale> as a separate item so that we can set the
        "filter" value -->
    <bitmap android:src="@drawable/ic_person_white_64dp"
        android:filter="true"
        android:dither="true"
        android:tint="@color/actionbar_icon_color" />

</scale>
Loading