mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-15 14:42:30 +00:00
* Reworked how hashing is queued, state must 1 and removed the
set_hash_failed hacks when closing, etc. * Changed the attributes of blocks in transfer view. git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@727 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
@@ -81,34 +81,24 @@ WindowDownloadTransferList::redraw() {
|
||||
char id;
|
||||
chtype attr = A_NORMAL;
|
||||
|
||||
if (bItr->transfers()->size() >= 1) {
|
||||
if (bItr->is_finished()) {
|
||||
attr = A_REVERSE;
|
||||
id = key_id(bItr->leader()->const_peer_info());
|
||||
|
||||
if (bItr->leader() != NULL) {
|
||||
attr = A_REVERSE;
|
||||
id = key_id(bItr->leader()->const_peer_info());
|
||||
} else {
|
||||
attr = A_REVERSE | A_UNDERLINE;
|
||||
id = key_id(bItr->transfers()->back()->const_peer_info());
|
||||
}
|
||||
|
||||
if (bItr->transfers()->size() > 1)
|
||||
attr = A_BOLD;
|
||||
} else if (bItr->is_transfering()) {
|
||||
attr = A_BOLD;
|
||||
id = key_id(bItr->leader()->const_peer_info());
|
||||
|
||||
} else if (bItr->queued()->size() >= 1) {
|
||||
id = key_id(bItr->queued()->back()->const_peer_info());
|
||||
|
||||
if (bItr->queued()->size() > 1)
|
||||
attr = A_BOLD;
|
||||
|
||||
} else if (bItr->is_finished()) {
|
||||
// Temporary until we fix the code so transfers are kept
|
||||
// around.
|
||||
id = '*';
|
||||
id = std::tolower(key_id(bItr->queued()->back()->const_peer_info()));
|
||||
|
||||
} else {
|
||||
id = '.';
|
||||
}
|
||||
|
||||
if (bItr->size_all() > 1)
|
||||
attr |= A_UNDERLINE;
|
||||
|
||||
m_canvas->print_char(attr | id);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user