diff --git a/cockatrice/src/lineeditcompleter.cpp b/cockatrice/src/lineeditcompleter.cpp index daf0e69a..380518c8 100644 --- a/cockatrice/src/lineeditcompleter.cpp +++ b/cockatrice/src/lineeditcompleter.cpp @@ -46,6 +46,7 @@ void LineEditCompleter::keyPressEvent(QKeyEvent * event) //Truncate the line to last space or whole string QString textValue = text(); int lastIndexof = textValue.lastIndexOf(" "); + lastIndexof = qMax(0, lastIndexof); QString finalString = textValue.left(lastIndexof); //Add a space if there's a word if (finalString != "")