mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 19:44:52 +00:00
Remove dep on gobject and replace with twisted.reactor.callLater
This commit is contained in:
parent
54bfbb888b
commit
c754fc7c74
1 changed files with 3 additions and 2 deletions
|
@ -25,7 +25,8 @@
|
|||
|
||||
|
||||
import threading
|
||||
import gobject
|
||||
from twisted.internet import reactor
|
||||
|
||||
from urllib import urlopen
|
||||
from deluge.log import LOG as log
|
||||
from deluge.common import get_pixmap
|
||||
|
@ -148,7 +149,7 @@ class TrackerIcons(component.Component):
|
|||
self.images[tracker_host] = filename
|
||||
|
||||
if callback:
|
||||
gobject.idle_add(callback, filename)
|
||||
reactor.callLater(0, callback, filename)
|
||||
|
||||
def get_async(self, tracker_host, callback):
|
||||
if tracker_host in self.images:
|
||||
|
|
Loading…
Add table
Reference in a new issue