From bb6a66bd824179579ae76dd1bbcbea5eba6f96ed Mon Sep 17 00:00:00 2001 From: wmayer Date: Mon, 8 Feb 2016 11:04:50 +0100 Subject: [PATCH] + fix minor regression of issue 2417 --- src/Gui/CallTips.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Gui/CallTips.cpp b/src/Gui/CallTips.cpp index 4b054a66b..0e2af1c8d 100644 --- a/src/Gui/CallTips.cpp +++ b/src/Gui/CallTips.cpp @@ -487,6 +487,7 @@ void CallTipsList::showTips(const QString& line) this->validObject = true; QString context = extractContext(line); + context = context.simplified(); QMap tips = extractTips(context); clear(); for (QMap::Iterator it = tips.begin(); it != tips.end(); ++it) {