From 9dd3a04a0862678d2fafd6254747180da1d7d9b1 Mon Sep 17 00:00:00 2001 From: tooomm Date: Tue, 25 Apr 2017 21:46:37 +0200 Subject: [PATCH] improve provided info in "edit sets" (#2641) --- cockatrice/src/window_sets.cpp | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/cockatrice/src/window_sets.cpp b/cockatrice/src/window_sets.cpp index 429f1740..eea61d17 100644 --- a/cockatrice/src/window_sets.cpp +++ b/cockatrice/src/window_sets.cpp @@ -94,7 +94,16 @@ WndSets::WndSets(QWidget *parent) this, SLOT(actToggleButtons(const QItemSelection &, const QItemSelection &))); labNotes = new QLabel; - labNotes->setText("" + tr("hints:") + "" + ""); + labNotes->setWordWrap(true); + labNotes->setTextInteractionFlags(Qt::TextBrowserInteraction); + labNotes->setOpenExternalLinks(true); + labNotes->setText( + "" + tr("Deck Editor") + ": " + + tr("Only cards in enabled sets will appear in the deck editor card list") + + "
" + tr("Card Art") + ": " + tr("Image priority is decided in the following order") + + "
  1. " + tr("The") + " " + + tr("CUSTOM Folder") + "
  2. " + tr("Enabled Sets (Top to Bottom)") + "
  3. " + tr("Disabled Sets (Top to Bottom)") + "
" + ); buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel); connect(buttonBox, SIGNAL(accepted()), this, SLOT(actSave()));