summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@digia.com>2015-01-30 16:44:32 +0100
committerhjk <hjk@theqtcompany.com>2015-01-30 18:57:04 +0000
commit40ba5f947bd489002430d7ae2bef62cd403cdeac (patch)
tree042d173a6f7a3fb68758bb9cfecf4a71e8b6b8a0
parent110392ad183466c746550720fc72eef45d248010 (diff)
downloadqt-creator-40ba5f947bd489002430d7ae2bef62cd403cdeac.tar.gz
Disable broken debugger tooltips for QML
Looks like the proper handling of tooltips while debugging a QML app is broken since commit 7f09d0b756ff3f9 . Just disable the functionality for now. Task-number: QTCREATORBUG-13854 Change-Id: I346058f6f9753475ec209ec8befdd5425bbd83d0 Reviewed-by: hjk <hjk@theqtcompany.com>
-rw-r--r--src/plugins/debugger/qml/qmlengine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/qml/qmlengine.cpp b/src/plugins/debugger/qml/qmlengine.cpp
index 4924fce386..34a620d9b9 100644
--- a/src/plugins/debugger/qml/qmlengine.cpp
+++ b/src/plugins/debugger/qml/qmlengine.cpp
@@ -524,7 +524,7 @@ void QmlEngine::serviceConnectionError(const QString &serviceName)
bool QmlEngine::canDisplayTooltip() const
{
- return state() == InferiorRunOk || state() == InferiorStopOk;
+ return false;
}
void QmlEngine::filterApplicationMessage(const QString &output, int /*channel*/)