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()));