forked from openlp/openlp
fixed bug #817674 'Export Song - Song list appears to be random order '
Fixes: https://launchpad.net/bugs/817674
This commit is contained in:
parent
f2090100a1
commit
2c6d14cfc8
@ -249,6 +249,7 @@ class SongExportForm(OpenLPWizard):
|
|||||||
# Load the list of songs.
|
# Load the list of songs.
|
||||||
Receiver.send_message(u'cursor_busy')
|
Receiver.send_message(u'cursor_busy')
|
||||||
songs = self.plugin.manager.get_all_objects(Song)
|
songs = self.plugin.manager.get_all_objects(Song)
|
||||||
|
songs.sort(key=lambda custom: custom.title.lower())
|
||||||
for song in songs:
|
for song in songs:
|
||||||
authors = u', '.join([author.display_name
|
authors = u', '.join([author.display_name
|
||||||
for author in song.authors])
|
for author in song.authors])
|
||||||
|
Loading…
Reference in New Issue
Block a user