Don't imply that Archidekt supports multiple cards/commander names.

This commit is contained in:
Brübach, Lukas 2025-11-27 12:24:23 +01:00
parent 8e1f4b61d4
commit af2502905e

View file

@ -142,11 +142,11 @@ TabArchidekt::TabArchidekt(TabSupervisor *_tabSupervisor) : Tab(_tabSupervisor)
// Contained cards
cardsField = new QLineEdit(navigationContainer);
cardsField->setPlaceholderText("Cards (comma separated)");
cardsField->setPlaceholderText("Deck contains card...");
// Commanders
commandersField = new QLineEdit(navigationContainer);
commandersField->setPlaceholderText("Commanders (comma separated)");
commandersField->setPlaceholderText("Deck has commander...");
// DB supplemented card search
auto cardDatabaseModel = new CardDatabaseModel(CardDatabaseManager::getInstance(), false, this);