From c54194408999f9a6b5a404dabc8c410f3c9b550f Mon Sep 17 00:00:00 2001 From: tooomm Date: Sat, 9 May 2015 14:12:41 +0200 Subject: [PATCH] expanded wording of name conflicts for tokens added "Make sure to enable the 'token set' in 'Edit sets...' dialog to display them correctly." --- cockatrice/src/dlg_edit_tokens.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cockatrice/src/dlg_edit_tokens.cpp b/cockatrice/src/dlg_edit_tokens.cpp index 2d272a6d..aeee97b8 100644 --- a/cockatrice/src/dlg_edit_tokens.cpp +++ b/cockatrice/src/dlg_edit_tokens.cpp @@ -136,7 +136,7 @@ void DlgEditTokens::actAddToken() do { name = QInputDialog::getText(this, tr("Add token"), tr("Please enter the name of the token:")); if (!name.isEmpty() && cardDatabaseModel->getDatabase()->getCard(name, false)) { - QMessageBox::critical(this, tr("Error"), tr("The chosen name conflicts with an existing card or token.")); + QMessageBox::critical(this, tr("Error"), tr("The chosen name conflicts with an existing card or token.\n Make sure to enable the 'token set' in 'Edit sets...' dialog to display them correctly.")); askAgain = true; } else askAgain = false;