1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-11 07:18:08 +00:00

Merge pull request #765 from Gelmir/no_newline_for_rename

Forbid newlines in rename torrent dialog.
This commit is contained in:
sledgehammer999 2013-07-11 14:44:51 -07:00
commit 0cfa3ba06d

View File

@ -624,8 +624,9 @@ void TransferListWidget::renameSelectedTorrent() {
if (!h.is_valid()) return; if (!h.is_valid()) return;
// Ask for a new Name // Ask for a new Name
bool ok; bool ok;
const QString name = QInputDialog::getText(this, tr("Rename"), tr("New name:"), QLineEdit::Normal, h.name(), &ok); QString name = QInputDialog::getText(this, tr("Rename"), tr("New name:"), QLineEdit::Normal, h.name(), &ok);
if (ok && !name.isEmpty()) { if (ok && !name.isEmpty()) {
name.replace(QRegExp("\r?\n|\r"), " ");
// Rename the torrent // Rename the torrent
listModel->setData(mi, name, Qt::DisplayRole); listModel->setData(mi, name, Qt::DisplayRole);
} }