Commit 50e0b6dd authored by Jeff's avatar Jeff
Browse files

Merge lines

parent 97d0cfa3
......@@ -45,8 +45,7 @@ void LineEditCompleter::keyPressEvent(QKeyEvent * event)
c->popup()->hide();
//Truncate the line to last space or whole string
QString textValue = text();
int lastIndexof = textValue.lastIndexOf(" ");
lastIndexof = qMax(0, lastIndexof);
int lastIndexof = qMax(0, textValue.lastIndexOf(" "));
QString finalString = textValue.left(lastIndexof);
//Add a space if there's a word
if (finalString != "")
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment