Bug 115129 - allow sorting of columns in the musicbrainz result dialog
Summary: allow sorting of columns in the musicbrainz result dialog
Status: RESOLVED FIXED
Alias: None
Product: amarok
Classification: Applications
Component: general (show other bugs)
Version: 1.3.5
Platform: Gentoo Packages Linux
: NOR wishlist
Target Milestone: ---
Assignee: Amarok Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-10-26 18:08 UTC by Dominik Karall
Modified: 2006-06-11 12:32 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Dominik Karall 2005-10-26 18:08:27 UTC
Version:           1.3.5 (using KDE KDE 3.4.92)
Installed from:    Gentoo Packages

It would be fine, if amarok would let the user sort the results of musicbrainz lookup by any of the columns listed there. For lookups which end up in a result of about 30 different tags, it isn't very easy to find the correct tag without sorting.
Comment 1 Alexandre Oliveira 2005-10-29 03:54:41 UTC
SVN commit 475382 by aoliveira:

Let user change the sorting in the musicbrainz result dialog, by clicking on the titles.
BUG: 115129


 M  +1 -1      trackpickerdialog.cpp  


--- trunk/extragear/multimedia/amarok/src/trackpickerdialog.cpp #475381:475382
@@ -61,7 +61,7 @@
     setMainWidget(m_base);
 
     m_base->fileLabel->setText(name);
-    m_base->trackList->setSorting(-1);
+//    m_base->trackList->setSorting(-1);
     KTRMResultList::ConstIterator end( results.end() );
     for(KTRMResultList::ConstIterator it = results.begin(); it != end; ++it)
         new TrackPickerItem(m_base->trackList, *it);