Skip to content
Snippets Groups Projects
Commit ceb03493 authored by Leena Miettinen's avatar Leena Miettinen Committed by Leena Miettinen
Browse files

ProjectExplorer: fix one more capitalization issue


Change-Id: I92f6e0044ce240e21a3f5865888268bb2bd61de0
Reviewed-by: default avatarDaniel Teske <daniel.teske@theqtcompany.com>
parent 7d6fd6ce
No related branches found
No related tags found
No related merge requests found
......@@ -413,7 +413,7 @@ void KitEnvironmentConfigWidget::refresh()
QString shortSummary = Utils::EnvironmentItem::toStringList(changes).join(QLatin1String("; "));
QFontMetrics fm(m_summaryLabel->font());
shortSummary = fm.elidedText(shortSummary, Qt::ElideRight, m_summaryLabel->width());
m_summaryLabel->setText(shortSummary.isEmpty() ? tr("No Changes to apply") : shortSummary);
m_summaryLabel->setText(shortSummary.isEmpty() ? tr("No changes to apply.") : shortSummary);
if (m_editor)
m_editor->setPlainText(Utils::EnvironmentItem::toStringList(changes).join(QLatin1Char('\n')));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment