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:") + "" + "
- " + tr("Enable the sets that you want to have available in the deck editor") + "
- " + tr("Move sets around to change their order, or click on a column header to sort sets on that field") + "
- " + tr("Sets order decides the source that will be used when loading images for a specific card") + "
- " + tr("Disabled sets will be used for loading images only if all the enabled sets failed") + "
");
+ 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")
+ + "- " + tr("The") + " "
+ + tr("CUSTOM Folder") + "
- " + tr("Enabled Sets (Top to Bottom)") + "
- " + tr("Disabled Sets (Top to Bottom)") + "
"
+ );
buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel);
connect(buttonBox, SIGNAL(accepted()), this, SLOT(actSave()));