Merge remote-tracking branch 'voiceinsideyou/PICARD-33'

Conflicts:
	NEWS.txt
This commit is contained in:
Lukáš Lalinský
2012-06-01 18:53:28 +02:00
2 changed files with 3 additions and 0 deletions

View File

@@ -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.

View File

@@ -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