diff --git a/res/layout/chat_bubble.xml b/res/layout/chat_bubble.xml
index 350f35c15..1c1ea79c8 100644
--- a/res/layout/chat_bubble.xml
+++ b/res/layout/chat_bubble.xml
@@ -113,7 +113,7 @@
@@ -133,7 +133,8 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/file_name"
- android:layout_centerVertical="true"/>
+ android:layout_centerVertical="true"
+ android:visibility="gone"/>
@@ -143,12 +144,13 @@
android:autoLink="web"
android:linksClickable="true"
android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
+ android:layout_height="wrap_content"/>
+ android:layout_height="wrap_content"
+ android:visibility="gone">
bold
+
+
\ No newline at end of file
diff --git a/src/android/org/linphone/chat/GroupChatFragment.java b/src/android/org/linphone/chat/GroupChatFragment.java
index 2fcc0aeb9..33ad47662 100644
--- a/src/android/org/linphone/chat/GroupChatFragment.java
+++ b/src/android/org/linphone/chat/GroupChatFragment.java
@@ -617,6 +617,7 @@ public class GroupChatFragment extends Fragment implements ChatRoomListener, Con
if (offset == total) {
holder.fileTransferLayout.setVisibility(View.GONE);
holder.fileTransferProgressBar.setVisibility(View.GONE);
+ holder.fileTransferAction.setVisibility(View.GONE);
} else {
holder.fileTransferProgressBar.setVisibility(View.VISIBLE);
holder.fileTransferProgressBar.setProgress(offset * 100 / total);