Better filtering and analytics.

This commit is contained in:
Lukas Brübach 2025-02-24 15:13:56 +01:00
parent 94e8b441d4
commit cf624a3dd7
35 changed files with 1038 additions and 535 deletions

View file

@ -262,7 +262,8 @@ bool DeckListModel::setData(const QModelIndex &index, const QVariant &value, con
}
emitRecursiveUpdates(index);
deckList->refreshDeckHash();
emit dataChanged(index, index);
return true;
}
@ -292,7 +293,7 @@ bool DeckListModel::removeRows(int row, int count, const QModelIndex &parent)
} else {
emitRecursiveUpdates(parent);
}
emit dataChanged(parent, parent);
return true;
}