we crash on < 2.9 anyway, so this stupidtray isnt needed and thus being removed

This commit is contained in:
Marcos Pinto 2007-08-21 23:07:20 +00:00
parent 730435c032
commit 4e7f2b0cd3
2 changed files with 2 additions and 18 deletions

View File

@ -40,15 +40,6 @@ import pygtk
pygtk.require('2.0')
import gtk
# This is a dummy tray object to allow Deluge to run on PyGTK < 2.9
class StupidTray:
def __init__(self):
pass
def set_visible(self, value):
pass
def set_tooltip(self, value):
pass
## Cell data functions to pass to add_func_column()
def cell_data_speed(column, cell, model, iter, data):

View File

@ -80,15 +80,8 @@ class DelugeGTK:
self.statusbar = self.wtree.get_widget("statusbar")
## Construct the Interface
try:
self.build_tray_icon()
except AttributeError:
#python-pygtk is < 2.9
self.tray_icon = dgtk.StupidTray()
self.has_tray = False
else:
self.has_tray = True
self.build_tray_icon()
self.has_tray = True
self.build_torrent_table()
self.load_status_icons()