diff --git a/src/plugins/qmljsinspector/qmljscontextcrumblepath.cpp b/src/plugins/qmljsinspector/qmljscontextcrumblepath.cpp index 295c15321aee8816bf36acfe312f327b0314dc26..736733434d8bcb15b66ebeaf17c170f2f0b08e24 100644 --- a/src/plugins/qmljsinspector/qmljscontextcrumblepath.cpp +++ b/src/plugins/qmljsinspector/qmljscontextcrumblepath.cpp @@ -7,9 +7,10 @@ namespace QmlJSInspector { namespace Internal { ContextCrumblePath::ContextCrumblePath(QWidget *parent) - : CrumblePath(parent) + : CrumblePath(parent), m_isEmpty(true) { setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred); + updateContextPath(QStringList()); } ContextCrumblePath::~ContextCrumblePath() @@ -23,6 +24,11 @@ void ContextCrumblePath::updateContextPath(const QStringList &path) foreach(const QString &pathPart, path) { pushElement(pathPart); } + + m_isEmpty = path.isEmpty(); + if (m_isEmpty) { + pushElement(tr("[no context]")); + } } } // namespace Internal diff --git a/src/plugins/qmljsinspector/qmljscontextcrumblepath.h b/src/plugins/qmljsinspector/qmljscontextcrumblepath.h index c19de84596d10e10964f14c471428b497627eea1..14a5dff36d2923b1373404c90ec3cc869c9c7d0b 100644 --- a/src/plugins/qmljsinspector/qmljscontextcrumblepath.h +++ b/src/plugins/qmljsinspector/qmljscontextcrumblepath.h @@ -16,7 +16,8 @@ public: public slots: void updateContextPath(const QStringList &path); - +private: + bool m_isEmpty; }; } // namespace Internal diff --git a/src/plugins/qmljsinspector/qmljsinspector.cpp b/src/plugins/qmljsinspector/qmljsinspector.cpp index ef024f5133e6080733c5c5a8cff2144e2d412f0f..d65e70efcfddc527d2fb4e0d07362f5f7bbedf3c 100644 --- a/src/plugins/qmljsinspector/qmljsinspector.cpp +++ b/src/plugins/qmljsinspector/qmljsinspector.cpp @@ -164,7 +164,6 @@ void Inspector::disconnected() { resetViews(); updateMenuActions(); - applyChangesToQmlObserverHelper(false); } @@ -324,7 +323,7 @@ void Inspector::startQmlProjectDebugger() void Inspector::resetViews() { - m_crumblePath->clear(); + m_crumblePath->updateContextPath(QStringList()); } void Inspector::simultaneouslyDebugQmlCppApplication() @@ -572,7 +571,6 @@ void Inspector::setSimpleDockWidgetArrangement() mainWindow->removeDockWidget(m_crumblePathDock); mainWindow->addDockWidget(Qt::BottomDockWidgetArea, m_crumblePathDock); mainWindow->splitDockWidget(mainWindow->toolBarDockWidget(), m_crumblePathDock, Qt::Vertical); - //m_crumblePathDock->setVisible(true); mainWindow->setTrackingEnabled(true); }