mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-23 04:54:18 +00:00
Merge pull request #16686 from glassez/set-location
Fix "Set location" to be really applied
This commit is contained in:
commit
c18c42e866
@ -445,7 +445,7 @@ void TrackerListWidget::copyTrackerUrl()
|
||||
for (const QTreeWidgetItem *item : selectedTrackerItems)
|
||||
{
|
||||
QString trackerURL = item->data(COL_URL, Qt::DisplayRole).toString();
|
||||
qDebug() << "Copy: " + trackerURL;
|
||||
qDebug() << "Copy:" << qUtf8Printable(trackerURL);
|
||||
urlsToCopy << trackerURL;
|
||||
}
|
||||
QApplication::clipboard()->setText(urlsToCopy.join(u'\n'));
|
||||
|
@ -342,7 +342,7 @@ void TransferListWidget::setSelectedTorrentsLocation()
|
||||
return;
|
||||
|
||||
const Path newLocation {fileDialog->selectedFiles().constFirst()};
|
||||
if (newLocation.exists())
|
||||
if (!newLocation.exists())
|
||||
return;
|
||||
|
||||
// Actually move storage
|
||||
|
@ -215,8 +215,8 @@ namespace
|
||||
break;
|
||||
default:
|
||||
Q_ASSERT_X(false, "processMap"
|
||||
, QString("Unexpected type: %1")
|
||||
.arg(QMetaType::typeName(static_cast<QMetaType::Type>(value.type())))
|
||||
, u"Unexpected type: %1"_qs
|
||||
.arg(QString::fromLatin1(QMetaType::typeName(static_cast<QMetaType::Type>(value.type()))))
|
||||
.toUtf8().constData());
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user