This commit is contained in:
fourtf 2020-08-23 17:11:41 +02:00
parent 28a0e4c63c
commit 5d0cb3ada8

View file

@ -488,7 +488,7 @@ void SplitInput::updateColonMenu()
else if (text[i] == ':')
{
if (i == 0 || text[i - 1].isSpace())
this->showColonMenu(text.mid(i, position - i).mid(1));
this->showColonMenu(text.mid(i, position - i + 1).mid(1));
else
this->hideColonMenu();
return;