change default sorting

This commit is contained in:
Paul Carroll 2025-07-31 10:34:44 -04:00
parent 66e5fd945d
commit 888a740aec

View file

@ -132,7 +132,7 @@ void HandZone::sortHand()
if (cards.isEmpty()) { if (cards.isEmpty()) {
return; return;
} }
cards.sortBy({CardList::SortByMainType, CardList::SortByName}); cards.sortBy({CardList::SortByMainType, CardList::SortByManaValue, CardList::SortByColorGrouping});
reorganizeCards(); reorganizeCards();
} }