1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-23 18:02:15 -05:00

slight clean up to cryptoprovider view interface

This commit is contained in:
Jesse Vincent 2011-02-11 12:12:09 -05:00
parent abc921093c
commit 20623dc18a
2 changed files with 6 additions and 1 deletions

View File

@ -66,6 +66,11 @@ public class MessageCryptoView extends LinearLayout {
}
public void hide () {
this.setVisibility(View.GONE);
}
/**
* Fill the decrypt layout with signature data, if known, make controls visible, if
* they should be visible.

View File

@ -122,7 +122,7 @@ public class SingleMessageView extends LinearLayout {
public void loadBodyFromUrl(String url) {
mMessageContentView.loadUrl(url);
// TODO reenable: updateCryptoLayout(cryptoProvider, pgpData, message);
mCryptoView.hide();
}