forked from qt-creator/qt-creator
ExternalTools: fix capitalization of UI strings
Change-Id: I4ac7710070dd525ffddecc2012ab75cc84a3d26e Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
This commit is contained in:
committed by
Leena Miettinen
parent
779f55ff37
commit
089f1b1bb3
@@ -657,5 +657,5 @@ void ExternalToolConfig::updateEnvironmentLabel()
|
||||
QString shortSummary = m_environment.join(QLatin1String("; "));
|
||||
QFontMetrics fm(ui->environmentLabel->font());
|
||||
shortSummary = fm.elidedText(shortSummary, Qt::ElideRight, ui->environmentLabel->width());
|
||||
ui->environmentLabel->setText(shortSummary.isEmpty() ? tr("No Changes to apply") : shortSummary);
|
||||
ui->environmentLabel->setText(shortSummary.isEmpty() ? tr("No changes to apply.") : shortSummary);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user