Update Info: Fix UI text

Change-Id: Iabd28121ea55b65fe10ad0e2dca0b4df44365b31
Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
This commit is contained in:
Leena Miettinen
2019-10-28 16:22:49 +01:00
parent e9044c7eff
commit 9b7328cc93

View File

@@ -193,7 +193,7 @@ void UpdateInfoPlugin::checkForUpdatesFinished()
d->m_progress->setKeepOnFinish(FutureProgress::HideOnFinish); d->m_progress->setKeepOnFinish(FutureProgress::HideOnFinish);
emit newUpdatesAvailable(true); emit newUpdatesAvailable(true);
Core::InfoBarEntry info(InstallUpdates, Core::InfoBarEntry info(InstallUpdates,
tr("New updates are available. Do you want to start the update?")); tr("New updates are available. Start the update?"));
info.setCustomButtonInfo(tr("Start Update"), [this] { info.setCustomButtonInfo(tr("Start Update"), [this] {
Core::ICore::infoBar()->removeInfo(InstallUpdates); Core::ICore::infoBar()->removeInfo(InstallUpdates);
startUpdater(); startUpdater();
@@ -202,7 +202,7 @@ void UpdateInfoPlugin::checkForUpdatesFinished()
info.setDetailsWidgetCreator([updates]() -> QWidget * { info.setDetailsWidgetCreator([updates]() -> QWidget * {
const QString updateText = updates.join("</li><li>"); const QString updateText = updates.join("</li><li>");
auto label = new QLabel; auto label = new QLabel;
label->setText("<qt><p>" + tr("Available Updates:") + "<ul><li>" + updateText label->setText("<qt><p>" + tr("Available updates:") + "<ul><li>" + updateText
+ "</li></ul></p></qt>"); + "</li></ul></p></qt>");
label->setContentsMargins(0, 0, 0, 8); label->setContentsMargins(0, 0, 0, 8);
return label; return label;