GNOME Bugzilla – Bug 776680
'Select All' doesn't have an action in Artists tab
Last modified: 2017-02-13 21:19:49 UTC
How to reproduce: 1. Go to Artists tab 2. Initiate selection mode via right click (or clicking the tick button) 3. From the selection menu in HeaderBar, select 'Select All' Result: Nothing happens Expected Result: Every item should be selected
Created attachment 342927 [details] [review] Fix selection on artists view Select all/none is implemented on baseview but is based on model from SongsView (where it works correctly) This patch overrides implementation for ArtistsView. Maybe a best solution would be to extract the decisor to mark a row (baseview.py:275) if self.model[_iter][5]: to be override from any view extending baseview. But I prefer to upload a simple patch and discuss a further refactor for codebase
This may be some fallout from the albumwidget rewrite.
In the end this will be accepted or rejected?
This is a real problem now and the fix looks alright. Thanks for the patch. Did rewrite the commit msg somewhat.