diff --git a/src/gajim.py b/src/gajim.py
index 630ea80c60ed80e4bebf2e2c4cf51f014bec5d55..cef6aac22340705427ab6ade3f6de054cb57e5f3 100755
--- a/src/gajim.py
+++ b/src/gajim.py
@@ -1125,15 +1125,13 @@ class Interface:
 		self.systray_capabilities = False
 		
 		if os.name == 'nt':
-			if float(gajim.version) > 0.8: # atm it is not ready for 0.8
-				try:
-					import systraywin32
-				except:
-					pass
-				else:
-					self.systray_capabilities = True
-					#self.roster.window.realize()
-					self.systray = systraywin32.SystrayWin32(self)
+			try:
+				import systraywin32
+			except: # user doesn't have trayicon capabilities
+				pass
+			else:
+				self.systray_capabilities = True
+				self.systray = systraywin32.SystrayWin32(self)
 		else:
 			try:
 				import egg.trayicon # use gnomepythonextras trayicon