diff --git a/src/calibre/gui2/actions/sort.py b/src/calibre/gui2/actions/sort.py index c959b0e45e..6fa25b263c 100644 --- a/src/calibre/gui2/actions/sort.py +++ b/src/calibre/gui2/actions/sort.py @@ -63,7 +63,7 @@ class SortByAction(InterfaceAction): self._sactions = [] for name in sorted(name_map, key=sort_key): key = name_map[name] - if key == 'title': + if key in {'title', 'series_sort', 'formats', 'path'}: continue if key == 'sort': name = _('Title')