aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ViewKeyAdvActivity.java
diff options
context:
space:
mode:
authorThialfihar <thi@thialfihar.org>2015-07-04 18:27:13 +0200
committerThialfihar <thi@thialfihar.org>2015-07-21 20:56:42 +0200
commit680799caa7bbe57e45300102b93b11850beff893 (patch)
treea503002a06917eee627f6ec3e061f7978ebcaa9d /OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ViewKeyAdvActivity.java
parent31eece0e277d4ede24d7ab419f7279e8952aedf7 (diff)
downloadopen-keychain-680799caa7bbe57e45300102b93b11850beff893.tar.gz
open-keychain-680799caa7bbe57e45300102b93b11850beff893.tar.bz2
open-keychain-680799caa7bbe57e45300102b93b11850beff893.zip
Fix drawer background color for ViewKeyActivity
Diffstat (limited to 'OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ViewKeyAdvActivity.java')
-rw-r--r--OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ViewKeyAdvActivity.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ViewKeyAdvActivity.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ViewKeyAdvActivity.java
index 4ba4bc13e..2ed5a6e97 100644
--- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ViewKeyAdvActivity.java
+++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ViewKeyAdvActivity.java
@@ -213,10 +213,10 @@ public class ViewKeyAdvActivity extends BaseActivity implements
if (isRevoked || isExpired) {
color = getResources().getColor(R.color.key_flag_red);
} else if (isSecret) {
- color = getResources().getColor(R.color.primary);
+ color = getResources().getColor(R.color.android_green_light);
} else {
if (isVerified) {
- color = getResources().getColor(R.color.primary);
+ color = getResources().getColor(R.color.android_green_light);
} else {
color = getResources().getColor(R.color.key_flag_orange);
}