mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
Closes #1903
This commit is contained in:
parent
28a0e4c63c
commit
5d0cb3ada8
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue