aboutsummaryrefslogtreecommitdiff
path: root/src/github
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2013-08-25 10:12:42 -0700
committerScott Jackson <daneren2005@gmail.com>2013-08-25 10:12:42 -0700
commit5bc1bd131a371a7fb19e8675796a803e4e887aa8 (patch)
tree6e854a8933869e5f1f44e9584f4b93287e1f5d74 /src/github
parent2032c1a8208eb7812051259d7a31283e2e652527 (diff)
downloaddsub-5bc1bd131a371a7fb19e8675796a803e4e887aa8.tar.gz
dsub-5bc1bd131a371a7fb19e8675796a803e4e887aa8.tar.bz2
dsub-5bc1bd131a371a7fb19e8675796a803e4e887aa8.zip
Go back to showing old icon in notification bar
Diffstat (limited to 'src/github')
-rw-r--r--src/github/daneren2005/dsub/util/Util.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/github/daneren2005/dsub/util/Util.java b/src/github/daneren2005/dsub/util/Util.java
index de7495c8..ae575e89 100644
--- a/src/github/daneren2005/dsub/util/Util.java
+++ b/src/github/daneren2005/dsub/util/Util.java
@@ -819,7 +819,7 @@ public final class Util {
public static void showPlayingNotification(final Context context, final DownloadServiceImpl downloadService, Handler handler, MusicDirectory.Entry song) {
// Set the icon, scrolling text and timestamp
- final Notification notification = new Notification(R.drawable.launch, song.getTitle(), System.currentTimeMillis());
+ final Notification notification = new Notification(R.drawable.stat_notify_playing, song.getTitle(), System.currentTimeMillis());
notification.flags |= Notification.FLAG_NO_CLEAR | Notification.FLAG_ONGOING_EVENT;
boolean playing = downloadService.getPlayerState() == PlayerState.STARTED;