Resolved merge conflict by accepting changes from master

This commit is contained in:
Lily 2025-03-13 12:15:12 -04:00
commit 5d8625761c
No known key found for this signature in database
GPG key ID: D916CEDDF4F93CE7
5 changed files with 426 additions and 23 deletions

View file

@ -262,7 +262,7 @@ bool DeckListModel::setData(const QModelIndex &index, const QVariant &value, con
}
emitRecursiveUpdates(index);
deckList->updateDeckHash();
deckList->refreshDeckHash();
return true;
}
@ -398,7 +398,7 @@ QModelIndex DeckListModel::addCard(const QString &cardName,
cardNode->setCardSetShortName(cardSetName);
cardNode->setCardCollectorNumber(cardInfoSet.getProperty("num"));
cardNode->setCardProviderId(cardInfoSet.getProperty("uuid"));
deckList->updateDeckHash();
deckList->refreshDeckHash();
}
sort(lastKnownColumn, lastKnownOrder);
emitRecursiveUpdates(parentIndex);