Properly show the 'Checking Resume Data' state instead of just 7
Show the checking icon for torrents in the 'Checking Resume Data' state
This commit is contained in:
parent
f330469bc9
commit
14c3655ba1
|
@ -1,3 +1,10 @@
|
||||||
|
=== Deluge 1.3.3 (In Development) ===
|
||||||
|
==== Core ====
|
||||||
|
* Properly show the 'Checking Resume Data' state instead of just 7
|
||||||
|
|
||||||
|
==== GtkUI ===
|
||||||
|
* Show the checking icon for torrents in the 'Checking Resume Data' state
|
||||||
|
|
||||||
=== Deluge 1.3.2 (24 May 2011) ===
|
=== Deluge 1.3.2 (24 May 2011) ===
|
||||||
==== Core ====
|
==== Core ====
|
||||||
* #1527: Fix Converting unicode to unicode error in move_storage
|
* #1527: Fix Converting unicode to unicode error in move_storage
|
||||||
|
|
|
@ -346,7 +346,10 @@ class Torrent(object):
|
||||||
|
|
||||||
# Set self.state to the ltstate right away just incase we don't hit some
|
# Set self.state to the ltstate right away just incase we don't hit some
|
||||||
# of the logic below
|
# of the logic below
|
||||||
self.state = str(ltstate)
|
if ltstate in LTSTATE:
|
||||||
|
self.state = LTSTATE[ltstate]
|
||||||
|
else:
|
||||||
|
self.state = str(ltstate)
|
||||||
|
|
||||||
log.debug("set_state_based_on_ltstate: %s", deluge.common.LT_TORRENT_STATE[ltstate])
|
log.debug("set_state_based_on_ltstate: %s", deluge.common.LT_TORRENT_STATE[ltstate])
|
||||||
log.debug("session.is_paused: %s", component.get("Core").session.is_paused())
|
log.debug("session.is_paused: %s", component.get("Core").session.is_paused())
|
||||||
|
|
|
@ -75,7 +75,8 @@ ICON_STATE = {
|
||||||
"Seeding": icon_seeding,
|
"Seeding": icon_seeding,
|
||||||
"Paused": icon_inactive,
|
"Paused": icon_inactive,
|
||||||
"Error": icon_alert,
|
"Error": icon_alert,
|
||||||
"Queued": icon_queued
|
"Queued": icon_queued,
|
||||||
|
"Checking Resume Data": icon_checking
|
||||||
}
|
}
|
||||||
|
|
||||||
def cell_data_statusicon(column, cell, model, row, data):
|
def cell_data_statusicon(column, cell, model, row, data):
|
||||||
|
|
Loading…
Reference in New Issue