mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-22 09:16:05 +03:00
Merge pull request #7237 from Chocobo1/prefill_name
Prefill torrent name when creating a new torrent. Closes #7229.
This commit is contained in:
commit
6f0d16bca5
1 changed files with 3 additions and 3 deletions
|
@ -144,7 +144,7 @@ void TorrentCreatorDlg::onCreateButtonClicked()
|
|||
QString input = Utils::Fs::fromNativePath(m_ui->textInputPath->text()).trimmed();
|
||||
|
||||
// test if readable
|
||||
QFileInfo fi(input);
|
||||
const QFileInfo fi(input);
|
||||
if (!fi.isReadable()) {
|
||||
QMessageBox::critical(this, tr("Torrent creator failed"), tr("Reason: Path to file/folder is not readable."));
|
||||
return;
|
||||
|
@ -152,8 +152,8 @@ void TorrentCreatorDlg::onCreateButtonClicked()
|
|||
input = fi.canonicalFilePath();
|
||||
|
||||
// get save path
|
||||
QString lastPath = m_storeLastSavePath;
|
||||
QString destination = QFileDialog::getSaveFileName(this, tr("Select where to save the new torrent"), lastPath, tr("Torrent Files (*.torrent)"));
|
||||
const QString savePath = QString(m_storeLastSavePath) + QLatin1Char('/') + fi.fileName() + QLatin1String(".torrent");
|
||||
QString destination = QFileDialog::getSaveFileName(this, tr("Select where to save the new torrent"), savePath, tr("Torrent Files (*.torrent)"));
|
||||
if (destination.isEmpty())
|
||||
return;
|
||||
if (!destination.endsWith(C_TORRENT_FILE_EXTENSION, Qt::CaseInsensitive))
|
||||
|
|
Loading…
Reference in a new issue