Skip to content
Snippets Groups Projects
Commit c84e898f authored by Friedemann Kleint's avatar Friedemann Kleint
Browse files

Text editor: Fix settings groups.

Remove they newly introduced category sortkey.
parent eaecfb7e
No related branches found
No related tags found
No related merge requests found
......@@ -40,6 +40,10 @@ QTCREATOR_UTILS_EXPORT QString settingsKey(const QString &category)
{
QString rc(category);
const QChar underscore = QLatin1Char('_');
// Remove the sort category "X.Category" -> "Category"
if (rc.size() > 2 && rc.at(0).isLetter() && rc.at(1) == QLatin1Char('.'))
rc.remove(0, 2);
// Replace special characters
const int size = rc.size();
for (int i = 0; i < size; i++) {
const QChar c = rc.at(i);
......
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