diff --git a/cockatrice/src/client/ui/widgets/printing_selector/printing_selector.cpp b/cockatrice/src/client/ui/widgets/printing_selector/printing_selector.cpp index feb30f904..9a3be4896 100644 --- a/cockatrice/src/client/ui/widgets/printing_selector/printing_selector.cpp +++ b/cockatrice/src/client/ui/widgets/printing_selector/printing_selector.cpp @@ -257,6 +257,7 @@ QList PrintingSelector::sortSets() if (sortOptionsSelector->currentText() == SORT_OPTIONS_PREFERENCE) { std::sort(sortedSets.begin(), sortedSets.end(), SetPriorityComparator()); + std::reverse(sortedSets.begin(), sortedSets.end()); } else if (sortOptionsSelector->currentText() == SORT_OPTIONS_RELEASE_DATE) { std::sort(sortedSets.begin(), sortedSets.end(), SetReleaseDateComparator()); }