[Game] Remove tally requiring two cards selected (#7058)

This commit is contained in:
RickyRister 2026-08-02 18:51:10 -07:00 committed by GitHub
parent 486b8e8407
commit a4557454a7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -256,7 +256,7 @@ void GameView::updateTotalSelectionCount(const QSize &viewSize)
GameScene *gameScene = static_cast<GameScene *>(scene()); GameScene *gameScene = static_cast<GameScene *>(scene());
QList<TallyRow> entries = Tally::compute(gameScene->selectedCards(), tallyType); QList<TallyRow> entries = Tally::compute(gameScene->selectedCards(), tallyType);
if (entries.isEmpty() || count <= 1) { if (entries.isEmpty()) {
tallyContainer->hide(); tallyContainer->hide();
cachedTallyRows.clear(); cachedTallyRows.clear();
return; return;