From 0401c70ddc5c31510671cd2feaae156efacdf54d Mon Sep 17 00:00:00 2001 From: Brieuc Viel Date: Mon, 21 Aug 2017 09:18:22 +0200 Subject: [PATCH] [FileSharing] update attachment icon [--force] --- src/android/org/linphone/ChatFragment.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/android/org/linphone/ChatFragment.java b/src/android/org/linphone/ChatFragment.java index f049616a3..cd00bf941 100644 --- a/src/android/org/linphone/ChatFragment.java +++ b/src/android/org/linphone/ChatFragment.java @@ -1688,7 +1688,7 @@ public class ChatFragment extends Fragment implements OnClickListener, LinphoneC public void loadBitmap(String path, ImageView imageView) { if (cancelPotentialWork(path, imageView)) { if(LinphoneUtils.isExtensionImage(path)) - defaultBitmap = BitmapFactory.decodeResource(getActivity().getResources(), R.drawable.chat_picture_over); + defaultBitmap = BitmapFactory.decodeResource(getActivity().getResources(), R.drawable.chat_attachment_over); else defaultBitmap = BitmapFactory.decodeResource(getActivity().getResources(), R.drawable.chat_attachment);