dbhub: Add some line breaks to the input dialog text for cloning

This commit is contained in:
Martin Kleusberg
2020-07-18 10:57:08 +02:00
parent fbfcdbe4bc
commit 595d845a9f
+4 -3
View File
@@ -168,9 +168,10 @@ void RemoteDock::fetchDatabase(QString url_string)
{
url_string = QInputDialog::getText(this,
qApp->applicationName(),
tr("This downloads a database from a remote server for local editing. "
"Please enter the URL to clone from. You can generate this URL by clicking "
"the 'Clone Database in DB4S' button on the web page of the database."),
tr("This downloads a database from a remote server for local editing.\n"
"Please enter the URL to clone from. You can generate this URL by\n"
"clicking the 'Clone Database in DB4S' button on the web page\n"
"of the database."),
QLineEdit::Normal,
QApplication::clipboard()->text());
}