Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/features_window.py')
-rw-r--r--src/features_window.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/features_window.py b/src/features_window.py
index 609959e65..c89b597cb 100644
--- a/src/features_window.py
+++ b/src/features_window.py
@@ -83,10 +83,6 @@ class FeaturesWindow:
_('Passive popups notifying for new events.'),
_('Requires python-notify or instead python-dbus in conjunction with notification-daemon.'),
_('Feature not available under Windows.')),
- _('Trayicon'): (self.trayicon_available,
- _('A icon in systemtray reflecting the current presence.'),
- _('Requires python-gnome2-extras or compiled trayicon module from Gajim sources.'),
- _('Requires PyGTK >= 2.10.')),
_('Automatic status'): (self.idle_available,
_('Ability to measure idle time, in order to set auto status.'),
_('Requires libxss library.'),
@@ -240,15 +236,6 @@ class FeaturesWindow:
return False
return True
- def trayicon_available(self):
- if os.name == 'nt':
- return True
- try:
- import systray
- except Exception:
- return False
- return True
-
def idle_available(self):
from common import sleepy
return sleepy.SUPPORTED