Merge pull request #1036 from QuentinC/development

Green led color is better with "full-green"
This commit is contained in:
Daniel Gultsch 2015-03-18 17:11:43 +01:00
commit 7ae357f863
1 changed files with 1 additions and 1 deletions

View File

@ -215,7 +215,7 @@ public class NotificationService {
mBuilder.setDefaults(0);
mBuilder.setSmallIcon(R.drawable.ic_notification);
mBuilder.setDeleteIntent(createDeleteIntent());
mBuilder.setLights(0xff259b24, 2000, 3000);
mBuilder.setLights(0xff00FF00, 2000, 3000);
final Notification notification = mBuilder.build();
notificationManager.notify(NOTIFICATION_ID, notification);
}