Summary: | Breadcrumb navigation not upgraded after disabling script | ||
---|---|---|---|
Product: | [Applications] amarok | Reporter: | Daniel Marth <danielmarth> |
Component: | Internet Services | Assignee: | Amarok Developers <amarok-bugs-dist> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | 2.4-GIT | ||
Target Milestone: | 2.4.0 | ||
Platform: | Unlisted Binaries | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | 2.4.1 | |
Sentry Crash Report: |
Description
Daniel Marth
2011-01-10 20:20:02 UTC
Confirmed with current git. The script disappears from the pane list but the breadcrumb list is not updated. commit 2793e95544ee213ac37ffebd20d3a110dce12580 branch master Author: Sergey Ivanov <123kash@gmail.com> Date: Tue Jan 11 23:47:43 2011 +0300 Update breadcrumbs on service insert/remove. BUG: 262780 diff --git a/ChangeLog b/ChangeLog index 007fd2a..2df11a6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -9,6 +9,8 @@ VERISON 2.4.1 CHANGES: BUGFIXES: + * Fixed issue when breadcrumbs stayed not updated after service insert/remove. + (BR 262780) * Fixed issue with TagDialog that make metadata fields stay editable if multiple streams opened. (BR 177400) * Fixed missing equel-sign ('=') in filter string of bookmarks. (BR 245759) diff --git a/src/browsers/BrowserCategoryList.cpp b/src/browsers/BrowserCategoryList.cpp index 3b8dc90..74e33f2 100644 --- a/src/browsers/BrowserCategoryList.cpp +++ b/src/browsers/BrowserCategoryList.cpp @@ -124,7 +124,7 @@ BrowserCategoryList::addCategory( BrowserCategory * category ) { m_proxyModel->sort( 0 ); } - + emit( viewChanged() ); } @@ -216,6 +216,7 @@ BrowserCategoryList::removeCategory( const QString &name ) m_categoryListModel->removeCategory( category ); delete category; m_categoryListView->reset(); + emit( viewChanged() ); } void BrowserCategoryList::slotSetFilterTimeout() |