diff --git a/src/plugins/projectexplorer/dependenciespanel.cpp b/src/plugins/projectexplorer/dependenciespanel.cpp index 595b5ca5a7b..07716e39b2a 100644 --- a/src/plugins/projectexplorer/dependenciespanel.cpp +++ b/src/plugins/projectexplorer/dependenciespanel.cpp @@ -94,6 +94,8 @@ QVariant DependenciesModel::data(const QModelIndex &index, int role) const switch (role) { case Qt::DisplayRole: return p->displayName(); + case Qt::ToolTipRole: + return p->projectFilePath().toUserOutput(); case Qt::CheckStateRole: return SessionManager::hasDependency(m_project, p) ? Qt::Checked : Qt::Unchecked; case Qt::DecorationRole: