From a8ad4f784adead4b167863fef449e157313b2190 Mon Sep 17 00:00:00 2001 From: thalieht Date: Sun, 30 Jan 2022 18:39:56 +0200 Subject: [PATCH] Fix "Free space on disk" in new torrent dialog Always initialize it. --- src/gui/addnewtorrentdialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/addnewtorrentdialog.cpp b/src/gui/addnewtorrentdialog.cpp index c41bccc27..4d989bcd3 100644 --- a/src/gui/addnewtorrentdialog.cpp +++ b/src/gui/addnewtorrentdialog.cpp @@ -991,9 +991,9 @@ void AddNewTorrentDialog::TMMChanged(int index) m_ui->groupBoxDownloadPath->blockSignals(true); m_ui->groupBoxDownloadPath->setChecked(!downloadPath.isEmpty()); - - updateDiskSpaceLabel(); } + + updateDiskSpaceLabel(); } void AddNewTorrentDialog::doNotDeleteTorrentClicked(bool checked)