diff --git a/NEWS.txt b/NEWS.txt index ffae684d6..324e94975 100644 --- a/NEWS.txt +++ b/NEWS.txt @@ -17,6 +17,7 @@ Version 1.0 - 2012-06-XX * Plugins actions can how create sub-menus using the MENU class attribute * New plugin hook register_clusterlist_action * Display the port Picard is listening on at bottom right status bar (PICARD-191) + * Make album drops from right hand pane to left default to "unmatched files" again (PICARD-33) Version 0.16 - 2011-10-23 * Added AcoustID support. diff --git a/picard/ui/itemviews.py b/picard/ui/itemviews.py index 45d13d6e9..cff1f5999 100644 --- a/picard/ui/itemviews.py +++ b/picard/ui/itemviews.py @@ -476,6 +476,8 @@ class BaseTreeView(QtGui.QTreeWidget): # application/picard.album-list albums = data.data("application/picard.album-list") if albums: + if isinstance(self, FileTreeView) and target is None: + target = self.tagger.unmatched_files albums = [self.tagger.load_album(id) for id in str(albums).split("\n")] self.drop_albums(albums, target) handled = True