From f8948317401e845c27ccadbbcdc9b624925abef7 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 10 Nov 2021 21:26:48 +0530 Subject: [PATCH] Fix advanced recipes help link not clickable --- src/calibre/gui2/dialogs/custom_recipes.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/calibre/gui2/dialogs/custom_recipes.py b/src/calibre/gui2/dialogs/custom_recipes.py index 0242d5c4d0..69f14beebb 100644 --- a/src/calibre/gui2/dialogs/custom_recipes.py +++ b/src/calibre/gui2/dialogs/custom_recipes.py @@ -453,6 +453,7 @@ class AdvancedRecipe(QWidget): # {{{ self.la = la = QLabel(_( 'For help with writing advanced news recipes, see the User Manual' ) % localize_user_manual_link('https://manual.calibre-ebook.com/news.html')) + la.setOpenExternalLinks(True) l.addWidget(la) self.editor = TextEdit(self)