forked from qt-creator/qt-creator
Core: fix capitalization of a button text
Change-Id: I35d878c72f967ef6bba17c1e259c562f2d4d1593 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
@@ -235,7 +235,7 @@ void InfoBarDisplay::update()
|
||||
if (info.globalSuppression == InfoBarEntry::GlobalSuppressionEnabled) {
|
||||
infoWidgetSuppressButton = new QToolButton;
|
||||
infoWidgetSuppressButton->setProperty("infoId", info.id.uniqueIdentifier());
|
||||
infoWidgetSuppressButton->setText(tr("Do not show again"));
|
||||
infoWidgetSuppressButton->setText(tr("Do Not Show Again"));
|
||||
connect(infoWidgetSuppressButton, SIGNAL(clicked()), SLOT(suppressButtonClicked()));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user