Reshow CallTip text on separator character

Closes #2352, Closes #2356
pull/2378/merge
dail8859 2016-09-27 15:38:27 -04:00
parent d63170852e
commit a59f49a992
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ void FunctionCallTip::setLanguageXML(TiXmlElement * pXmlKeyword) {
bool FunctionCallTip::updateCalltip(int ch, bool needShown)
{
if (not needShown && ch != _start && not isVisible()) //must be already visible
if (not needShown && ch != _start && ch != _param && not isVisible()) //must be already visible
return false;
_curPos = static_cast<int32_t>(_pEditView->execute(SCI_GETCURRENTPOS));