mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-14 14:32:15 -07:00
Adding Long Name Sorting Options To Set List
Updating Dialog To Sort Options
This commit is contained in:
parent
2e1f5332db
commit
27b8cc5526
3 changed files with 14 additions and 0 deletions
|
|
@ -24,6 +24,7 @@ DlgCardSearch::DlgCardSearch(QWidget *parent)
|
|||
cboSetList = new QComboBox();
|
||||
cboSetList->addItem("");
|
||||
SetList setList = db->getSetList();
|
||||
setList.sortByName();
|
||||
for (int intLoop = 0; intLoop < setList.size(); ++intLoop) {
|
||||
//Adding Translated Set Name, Just In Case
|
||||
cboSetList->addItem(tr("%1").arg(setList.at(intLoop)->getLongName()), setList.at(intLoop)->getShortName());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue