Fix advanced recipes help link not clickable

This commit is contained in:
Kovid Goyal 2021-11-10 21:26:48 +05:30
parent 8f6c3dff7e
commit f894831740
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -453,6 +453,7 @@ class AdvancedRecipe(QWidget): # {{{
self.la = la = QLabel(_(
'For help with writing advanced news recipes, see the <a href="%s">User Manual</a>'
) % localize_user_manual_link('https://manual.calibre-ebook.com/news.html'))
la.setOpenExternalLinks(True)
l.addWidget(la)
self.editor = TextEdit(self)