From 7e54b476afd1fee24c9faab6307ddb315aa8fdc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Wed, 15 Oct 2014 20:23:27 +0200 Subject: [PATCH] Enabled link to Comic Vine 'Grab an API key' web page --- YACReaderLibrary/comic_vine/api_key_dialog.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/YACReaderLibrary/comic_vine/api_key_dialog.cpp b/YACReaderLibrary/comic_vine/api_key_dialog.cpp index 5ab0c354..355ecd0e 100644 --- a/YACReaderLibrary/comic_vine/api_key_dialog.cpp +++ b/YACReaderLibrary/comic_vine/api_key_dialog.cpp @@ -20,6 +20,7 @@ ApiKeyDialog::ApiKeyDialog(QWidget *parent) : QLabel * info = new QLabel(tr("Before you can connect to Comic Vine, you need your own API key. Please, get one free here")); info->setWordWrap(true); + info->setOpenExternalLinks(true); edit = new QLineEdit(); edit->setPlaceholderText(tr("Paste here your Comic Vine API key")); connect(edit,SIGNAL(textChanged(QString)),this,SLOT(enableAccept(QString)));