https://bugs.kde.org/show_bug.cgi?id=391804
Christian Ehrlicher <ch.ehrlic...@gmx.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Ever confirmed|0 |1 Status|UNCONFIRMED |CONFIRMED --- Comment #1 from Christian Ehrlicher <ch.ehrlic...@gmx.de> --- You're looking for something like this (maybe remove svn root path?): diff --git a/src/svnfrontend/maintreewidget.cpp b/src/svnfrontend/maintreewidget.cpp index 0c4d50f8..6b3745f9 100644 --- a/src/svnfrontend/maintreewidget.cpp +++ b/src/svnfrontend/maintreewidget.cpp @@ -2236,6 +2236,9 @@ void MainTreeWidget::slotDirSelectionChanged(const QItemSelection &_item, const if (Kdesvnsettings::show_navigation_panel()) { m_TreeView->setRootIndex(m_Data->m_SortModel->mapFromSource(_t)); } + auto item = m_Data->m_Model->nodeForIndex(_t); + if (item) + changeCaption(item->fullName()); } else { checkSyncTreeModel(); } -- You are receiving this mail because: You are watching all bug changes.