ui: Fixed jumping to character in overview bundle broken when _ present
This commit is contained in:
@@ -173,7 +173,7 @@ void QtGraphView::pressedCharacterKey(QChar c)
|
||||
{
|
||||
hasTextNodes = true;
|
||||
QChar start(n->getName()[0]);
|
||||
if (start >= c)
|
||||
if (start.toLower() >= c.toLower())
|
||||
{
|
||||
node = n.get();
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user