diff --git a/src/plugins/qmldesigner/components/stateseditornew/stateseditormodel.cpp b/src/plugins/qmldesigner/components/stateseditornew/stateseditormodel.cpp index 449a90f8ea0..dd20acabea6 100644 --- a/src/plugins/qmldesigner/components/stateseditornew/stateseditormodel.cpp +++ b/src/plugins/qmldesigner/components/stateseditornew/stateseditormodel.cpp @@ -289,7 +289,7 @@ QStringList StatesEditorModel::stateGroups() const auto stateGroups = Utils::transform(m_statesEditorView->allModelNodesOfType( "QtQuick.StateGroup"), [](const ModelNode &node) { return node.displayName(); }); - stateGroups.prepend(tr("Root")); + stateGroups.prepend(tr("Default")); return stateGroups; }