Trim unwanted bracket in layout name
This commit is contained in:
parent
58fa6eb1f9
commit
7d5c44d4c4
|
@ -124,7 +124,7 @@ Bool XKeyboard::initializeXkb()
|
||||||
groupName = groupNameC;
|
groupName = groupNameC;
|
||||||
std::string::size_type pos = groupName.find('(', 0);
|
std::string::size_type pos = groupName.find('(', 0);
|
||||||
if (pos != std::string::npos) {
|
if (pos != std::string::npos) {
|
||||||
groupName = groupName.substr(0, pos + 1);
|
groupName = groupName.substr(0, pos - 1);
|
||||||
}
|
}
|
||||||
_groupNames.push_back(groupName);
|
_groupNames.push_back(groupName);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue