Remove paused status icon

This commit is contained in:
Christopher Eby 2012-03-03 06:31:59 -06:00
parent a515058824
commit 6c6754cff0
5 changed files with 1 additions and 1 deletions

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 756 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1690,7 +1690,7 @@ public final class PlaybackService extends Service
Notification notification = new Notification();
notification.contentView = views;
notification.icon = playing ? R.drawable.status_icon : R.drawable.status_icon_paused;
notification.icon = R.drawable.status_icon;
notification.flags |= Notification.FLAG_ONGOING_EVENT;
notification.contentIntent = mNotificationAction;
return notification;