|
|
|
@ -93,6 +93,7 @@ AddNewTorrentDialog::AddNewTorrentDialog(const BitTorrent::AddTorrentParams &inP
@@ -93,6 +93,7 @@ AddNewTorrentDialog::AddNewTorrentDialog(const BitTorrent::AddTorrentParams &inP
|
|
|
|
|
// TODO: set dialog file properties using m_torrentParams.filePriorities
|
|
|
|
|
m_ui->setupUi(this); |
|
|
|
|
setAttribute(Qt::WA_DeleteOnClose); |
|
|
|
|
|
|
|
|
|
m_ui->lblMetaLoading->setVisible(false); |
|
|
|
|
m_ui->progMetaLoading->setVisible(false); |
|
|
|
|
|
|
|
|
@ -100,10 +101,6 @@ AddNewTorrentDialog::AddNewTorrentDialog(const BitTorrent::AddTorrentParams &inP
@@ -100,10 +101,6 @@ AddNewTorrentDialog::AddNewTorrentDialog(const BitTorrent::AddTorrentParams &inP
|
|
|
|
|
m_ui->savePath->setDialogCaption(tr("Choose save path")); |
|
|
|
|
m_ui->savePath->setMaxVisibleItems(20); |
|
|
|
|
|
|
|
|
|
#ifdef Q_OS_MAC |
|
|
|
|
setModal(true); |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
const auto *session = BitTorrent::Session::instance(); |
|
|
|
|
|
|
|
|
|
if (m_torrentParams.addPaused == TriStateBool::True) |
|
|
|
@ -241,7 +238,7 @@ void AddNewTorrentDialog::show(const QString &source, const BitTorrent::AddTorre
@@ -241,7 +238,7 @@ void AddNewTorrentDialog::show(const QString &source, const BitTorrent::AddTorre
|
|
|
|
|
: dlg->loadTorrentFile(source); |
|
|
|
|
|
|
|
|
|
if (isLoaded) |
|
|
|
|
dlg->open(); |
|
|
|
|
dlg->QDialog::show(); |
|
|
|
|
else |
|
|
|
|
delete dlg; |
|
|
|
|
} |
|
|
|
|