Skip to content

Commit

Permalink
Revert "Ignore auto_sort when shuffle is enabled (#3581)"
Browse files Browse the repository at this point in the history
This reverts commit 68ba678.
  • Loading branch information
slosd committed Jan 14, 2023
1 parent 4f91919 commit ed7aa31
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions quodlibet/qltk/songlist.py
Expand Up @@ -991,8 +991,7 @@ def __song_updated(self, librarian, songs):
Warning: This makes the row-changed signal useless.
"""
model = self.get_model()
if not config.getboolean("memory", "shuffle", False) and \
config.getboolean("song_list", "auto_sort") and self.is_sorted():
if config.getboolean("song_list", "auto_sort") and self.is_sorted():
iters, _, complete = self.__find_iters_in_selection(songs)

if not complete:
Expand Down

0 comments on commit ed7aa31

Please sign in to comment.