Commit e824b6dd authored by Grigory Fedorov's avatar Grigory Fedorov

Online/offline status icon changed and renamed.

parent 7a18663a
...@@ -362,10 +362,10 @@ public class NotificationManager implements OnInitializedListener, OnAccountChan ...@@ -362,10 +362,10 @@ public class NotificationManager implements OnInitializedListener, OnAccountChan
if (connected > 0) { if (connected > 0) {
persistentNotificationBuilder.setColor(COLOR_MATERIAL_RED_500); persistentNotificationBuilder.setColor(COLOR_MATERIAL_RED_500);
persistentNotificationBuilder.setSmallIcon(R.drawable.ic_stat_light_bulb_big); persistentNotificationBuilder.setSmallIcon(R.drawable.ic_stat_online);
} else { } else {
persistentNotificationBuilder.setColor(NotificationCompat.COLOR_DEFAULT); persistentNotificationBuilder.setColor(NotificationCompat.COLOR_DEFAULT);
persistentNotificationBuilder.setSmallIcon(R.drawable.ic_stat_light_bulb_big_off); persistentNotificationBuilder.setSmallIcon(R.drawable.ic_stat_offline);
} }
persistentNotificationBuilder.setContentText(getConnectionState(waiting, connecting, connected, accountList.size())); persistentNotificationBuilder.setContentText(getConnectionState(waiting, connecting, connected, accountList.size()));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment