#1218 closed defect (Fixed)
Improper callLater() usage in tracker_icons.py
| Reported by: | ETZel | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | 1.3 |
| Component: | Core | Version: | 1.2.3 |
| Keywords: | Cc: |
Description
reactor.callLater(0, callback, filename) call here source:deluge/ui/tracker_icons.py#L163 is incompatible with Qt4Reactor, because all timers in Qt4Reactor must be started from the reactor thread.
There's a better suited function which doesn't mess with timers: reactor.callFromThread(callback, filename).
Change History (2)
comment:1 by , 16 years ago
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
comment:2 by , 16 years ago
| Milestone: | → 1.3.0 |
|---|
Note:
See TracTickets
for help on using tickets.



Fixed in master.