Merge pull request #14647 from Chocobo1/cursor

Move cursor to the next line of end of text
This commit is contained in:
Chocobo1 2021-03-29 12:50:31 +08:00 committed by GitHub
commit 48d532777a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -83,7 +83,12 @@ DownloadFromURLDialog::DownloadFromURLDialog(QWidget *parent)
if (isDownloadable(str))
uniqueURLs << str;
}
m_ui->textUrls->setText(uniqueURLs.values().join('\n'));
const QString text = uniqueURLs.values().join(QLatin1Char('\n'))
+ (!uniqueURLs.isEmpty() ? QLatin1String("\n") : QLatin1String(""));
m_ui->textUrls->setText(text);
m_ui->textUrls->moveCursor(QTextCursor::End);
Utils::Gui::resize(this, m_storeDialogSize);
show();