mirror of
https://github.com/transmission/transmission
synced 2025-02-03 13:03:50 +00:00
(rpc) #1101: Show the individual progress for each file in transmission-remote
This commit is contained in:
parent
2117a26b30
commit
fd3e7e9e7f
1 changed files with 7 additions and 1 deletions
|
@ -645,7 +645,13 @@ printFileList( tr_benc * top )
|
|||
case TR_PRI_HIGH: pristr = "High"; break;
|
||||
default: pristr = "Normal"; break;
|
||||
}
|
||||
printf( "%3d: %3.0f%% %-8s %-3s %9s %s\n", (j+1), percent, pristr, (wanted?"Yes":"No"), sizestr, filename );
|
||||
printf( "%3d: %3.0f%% %-8s %-3s %9s %s\n",
|
||||
(j+1),
|
||||
(100.0*percent),
|
||||
pristr,
|
||||
(wanted?"Yes":"No"),
|
||||
sizestr,
|
||||
filename );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue