diff --git a/src/chat_control.py b/src/chat_control.py
index 51c54a2345159050f9439e9a9d78617c42b2d6af..8d60be4a30e4b5754da6ab87536249a9f2800c4f 100644
--- a/src/chat_control.py
+++ b/src/chat_control.py
@@ -1723,18 +1723,19 @@ class ChatControl(ChatControlBase):
         self._video_button.set_sensitive(self.video_available)
 
         # Send file
-        if self.contact.supports(NS_FILE) and self.contact.resource:
+        if self.contact.supports(NS_FILE) and (self.type_id == 'chat' or \
+        self.gc_contact.resource):
             self._send_file_button.set_sensitive(True)
             self._send_file_button.set_tooltip_text('')
         else:
             self._send_file_button.set_sensitive(False)
             if not self.contact.supports(NS_FILE):
                 self._send_file_button.set_tooltip_text(_(
-                        "This contact does not support file transfer."))
+                    "This contact does not support file transfer."))
             else:
                 self._send_file_button.set_tooltip_text(
-                        _("You need to know the real JID of the contact to send him or "
-                        "her a file."))
+                    _("You need to know the real JID of the contact to send "
+                    "him or her a file."))
 
         # Convert to GC
         if self.contact.supports(NS_MUC):