зеркало из https://github.com/nextcloud/desktop.git
Wizard: Add explanation text when server error is shown #6157
Just showing a box with the message can be surprising.
This commit is contained in:
Родитель
9a1ea67a35
Коммит
06ce8dd8bd
|
@ -294,7 +294,8 @@ void OwncloudSetupWizard::slotNoServerFound(QNetworkReply *reply)
|
|||
QString serverError = reply->peek(1024 * 20);
|
||||
qCDebug(lcWizard) << serverError;
|
||||
QMessageBox messageBox(_ocWizard);
|
||||
messageBox.setText(serverError);
|
||||
messageBox.setText(tr("The server reported the following error:"));
|
||||
messageBox.setInformativeText(serverError);
|
||||
messageBox.addButton(QMessageBox::Ok);
|
||||
messageBox.setTextFormat(Qt::RichText);
|
||||
messageBox.exec();
|
||||
|
|
Загрузка…
Ссылка в новой задаче