aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/DecryptFragment.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/DecryptFragment.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/DecryptFragment.java
index 71a5f3ad5..6bb2209ea 100644
--- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/DecryptFragment.java
+++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/DecryptFragment.java
@@ -189,8 +189,9 @@ public class DecryptFragment extends Fragment {
}
} else {
mSignatureLayout.setVisibility(View.GONE);
+ mLookupKey.setVisibility(View.GONE);
- // only successful decryption
+ // successful decryption-only
mResultLayout.setBackgroundColor(getResources().getColor(R.color.result_blue));
mResultText.setText(R.string.decrypt_result_decrypted);
}
@@ -207,7 +208,8 @@ public class DecryptFragment extends Fragment {
decryptStart(passphrase);
}
}
- });
+ }
+ );
}
/**