Skip to content
Snippets Groups Projects
Commit bf4b22a4 authored by Danny Lin's avatar Danny Lin Committed by Dhina17
Browse files

SystemUI: Fix uneven volume icon padding in status bar

The current silent and vibrate volume icons in the status bar have
slightly too much padding compared to all of the other status bar icons,
which makes it look out-of-place. Remove the excess insets to make it
more even.

Note that the silent icon still has 0.5 dp of padding on its left and
right sides to make its total size match that of the vibrate icon, which
is 19 dp, while the silent icon is 18 dp.

Change-Id: I7fb9a6e0113f6103eed308ac2d25c392fe8abb73
parent d51f65a0
No related branches found
No related tags found
No related merge requests found
......@@ -14,4 +14,6 @@ Copyright (C) 2015 The Android Open Source Project
limitations under the License.
-->
<inset xmlns:android="http://schemas.android.com/apk/res/android"
android:insetLeft="-3dp"
android:insetRight="-3dp"
android:drawable="@drawable/ic_speaker_mute" />
......@@ -14,6 +14,4 @@
limitations under the License.
-->
<inset xmlns:android="http://schemas.android.com/apk/res/android"
android:insetLeft="2.5dp"
android:insetRight="2.5dp"
android:drawable="@drawable/ic_volume_ringer_vibrate" />
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment