mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-14 16:57:55 +00:00
- Removed useless variable check
This commit is contained in:
parent
e2d801d920
commit
a9686e8c4b
@ -279,11 +279,8 @@ public slots:
|
||||
|
||||
void updateDiskSpaceLabels() {
|
||||
unsigned long long available = misc::freeDiskSpaceOnPath(savePathTxt->text());
|
||||
if (available > 0) {
|
||||
lbl_disk_space->setText(misc::friendlyUnit(available));
|
||||
} else {
|
||||
lbl_disk_space->setText(tr("Unknown"));
|
||||
}
|
||||
lbl_disk_space->setText(misc::friendlyUnit(available));
|
||||
|
||||
// Determine torrent size
|
||||
unsigned long long torrent_size = 0;
|
||||
int nbFiles = t->num_files();
|
||||
|
Loading…
Reference in New Issue
Block a user