ui: Fixed jumping to character in overview bundle broken when _ present

This commit is contained in:
Eberhard Graether
2017-02-11 16:36:40 +01:00
parent 06c2976959
commit ba984121a2
+1 -1
View File
@@ -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;