mirror of
https://github.com/oxen-io/session-android.git
synced 2023-12-14 02:53:01 +01:00
Fix key cache icon colors on GB.
This commit is contained in:
parent
ef0a86398a
commit
d991d65225
4 changed files with 1 additions and 1 deletions
BIN
res/drawable-hdpi/icon_cached.png
Normal file
BIN
res/drawable-hdpi/icon_cached.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 767 B |
BIN
res/drawable-mdpi/icon_cached.png
Normal file
BIN
res/drawable-mdpi/icon_cached.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 620 B |
BIN
res/drawable-xhdpi/icon_cached.png
Normal file
BIN
res/drawable-xhdpi/icon_cached.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
|
@ -140,7 +140,7 @@ public class KeyCachingService extends Service {
|
|||
}
|
||||
|
||||
private void foregroundService() {
|
||||
Notification notification = new Notification(R.drawable.ic_menu_lock_holo_dark, "TextSecure Passphrase Cached", System.currentTimeMillis());
|
||||
Notification notification = new Notification(R.drawable.icon_cached, "TextSecure Passphrase Cached", System.currentTimeMillis());
|
||||
Intent intent = new Intent(this, ConversationListActivity.class);
|
||||
PendingIntent launchIntent = PendingIntent.getActivity(getApplicationContext(), 0, intent, 0);
|
||||
notification.setLatestEventInfo(getApplicationContext(), "TextSecure Cached", "TextSecure Passphrase Cached", launchIntent);
|
||||
|
|
Loading…
Reference in a new issue