From 383154becf26b4953aeb442c2fcfe3560aaea921 Mon Sep 17 00:00:00 2001
From: Yann Leboulanger <asterix@lagaule.org>
Date: Tue, 16 Aug 2005 15:24:50 +0000
Subject: [PATCH] we always show ft request window in 0.8 release

---
 src/gajim.py | 25 ++++++++++++++-----------
 1 file changed, 14 insertions(+), 11 deletions(-)

diff --git a/src/gajim.py b/src/gajim.py
index 5c8475b01d..a7d6f843b2 100755
--- a/src/gajim.py
+++ b/src/gajim.py
@@ -736,17 +736,20 @@ class Interface:
 		if not gajim.contacts[account].has_key(jid):
 			return
 		file_props = array[1]
-		if gajim.config.get('notify_on_new_message'):
-			# check if we should be notified
-			instance = dialogs.PopupNotificationWindow(self,
-					_('File Transfer Request'), jid, account, 'file', file_props)
-			self.roster.popup_notification_windows.append(instance)
-		elif (gajim.connections[account].connected in (2, 3)
-			and gajim.config.get('autopopup')) or \
-			gajim.config.get('autopopupaway'):
-			contact = gajim.contacts[account][jid][0]
-			self.windows['file_transfers'].show_file_request(
-				account, contact, file_props)
+		# FIXME: in 0.9 we'll have a queue for that
+#		if gajim.config.get('notify_on_new_message'):
+#			# check if we should be notified
+#			instance = dialogs.PopupNotificationWindow(self,
+#					_('File Transfer Request'), jid, account, 'file', file_props)
+#			self.roster.popup_notification_windows.append(instance)
+#		elif (gajim.connections[account].connected in (2, 3)
+#			and gajim.config.get('autopopup')) or \
+#			gajim.config.get('autopopupaway'):
+#			contact = gajim.contacts[account][jid][0]
+#			self.windows['file_transfers'].show_file_request(
+#				account, contact, file_props)
+		self.windows['file_transfers'].show_file_request(
+			account, contact, file_props)
 				
 	def handle_event_file_progress(self, account, file_props):
 		self.windows['file_transfers'].set_progress(file_props['type'], 
-- 
GitLab