forked from qt-creator/qt-creator
Qt Quick Designer: Fix UI text capitalization
Change-Id: Idc9fc90fc63d3154ed893dab85c9806ece485825 Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
@@ -898,7 +898,7 @@ void static setIndexProperty(const AbstractProperty &property, const QVariant &v
|
||||
|
||||
const QString propertyName = QString::fromUtf8(property.name());
|
||||
|
||||
QString title = QCoreApplication::translate("ModelNodeOperations", "Cannot set property %1.").arg(propertyName);
|
||||
QString title = QCoreApplication::translate("ModelNodeOperations", "Cannot Set Property %1").arg(propertyName);
|
||||
QString description = QCoreApplication::translate("ModelNodeOperations", "The property %1 is bound to an expression.").arg(propertyName);
|
||||
Core::AsynchronousMessageBox::warning(title, description);
|
||||
}
|
||||
|
Reference in New Issue
Block a user