1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-02-05 11:24:15 +00:00

Merge pull request #7542 from Chocobo1/wordbreak

Set QTextOption::NoWrap property in "Download from URLs" dialog
This commit is contained in:
Mike Tzou 2017-10-07 13:40:41 +08:00 committed by GitHub
commit 7895afb8e9

View File

@ -56,6 +56,8 @@ class downloadFromURL : public QDialog, private Ui::downloadFromURL
connect(buttonBox, &QDialogButtonBox::accepted, this, &downloadFromURL::downloadButtonClicked);
connect(buttonBox, &QDialogButtonBox::rejected, this, &QDialog::reject);
textUrls->setWordWrapMode(QTextOption::NoWrap);
// Paste clipboard if there is an URL in it
QString clip_txt = qApp->clipboard()->text();
QStringList clip_txt_list = clip_txt.split(QString::fromUtf8("\n"));