From a59f49a992f956c1c7697ddc6ec8ec9000431bc7 Mon Sep 17 00:00:00 2001 From: dail8859 Date: Tue, 27 Sep 2016 15:38:27 -0400 Subject: [PATCH] Reshow CallTip text on separator character Closes #2352, Closes #2356 --- PowerEditor/src/ScitillaComponent/FunctionCallTip.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PowerEditor/src/ScitillaComponent/FunctionCallTip.cpp b/PowerEditor/src/ScitillaComponent/FunctionCallTip.cpp index 83d60aa36..1bd83fee1 100644 --- a/PowerEditor/src/ScitillaComponent/FunctionCallTip.cpp +++ b/PowerEditor/src/ScitillaComponent/FunctionCallTip.cpp @@ -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(_pEditView->execute(SCI_GETCURRENTPOS));