summaryrefslogtreecommitdiffstats
path: root/src/com/android/mail/compose/ComposeAttachmentTile.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/mail/compose/ComposeAttachmentTile.java')
-rw-r--r--src/com/android/mail/compose/ComposeAttachmentTile.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/com/android/mail/compose/ComposeAttachmentTile.java b/src/com/android/mail/compose/ComposeAttachmentTile.java
index 022fbe115..844a7a3a0 100644
--- a/src/com/android/mail/compose/ComposeAttachmentTile.java
+++ b/src/com/android/mail/compose/ComposeAttachmentTile.java
@@ -7,6 +7,7 @@ import android.view.ViewGroup;
import android.widget.ImageButton;
import com.android.mail.R;
+import com.android.mail.providers.Attachment;
import com.android.mail.ui.AttachmentTile;
public class ComposeAttachmentTile extends AttachmentTile implements AttachmentDeletionInterface {
@@ -29,6 +30,12 @@ public class ComposeAttachmentTile extends AttachmentTile implements AttachmentD
}
@Override
+ public void render(Attachment attachment, AttachmentPreviewCache attachmentPreviewCache) {
+ // the super implementation is good enough. just broaden its access.
+ super.render(attachment, attachmentPreviewCache);
+ }
+
+ @Override
protected void onFinishInflate() {
super.onFinishInflate();