From ff4de3f532c9953297aef3539458709fb7fa85d8 Mon Sep 17 00:00:00 2001 From: JimmXinu <> Date: Tue, 23 Apr 2013 13:10:31 -0500 Subject: [PATCH] Adding 'Copy Link' right click menu to links in book details. --- src/calibre/gui2/book_details.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/book_details.py b/src/calibre/gui2/book_details.py index efe9d36854..44c324fa43 100644 --- a/src/calibre/gui2/book_details.py +++ b/src/calibre/gui2/book_details.py @@ -484,7 +484,7 @@ class BookInfo(QWebView): menu.removeAction(action) if not r.isNull(): if url.startswith('http'): - for a, t in [('copy', _('Copy Link')), + for a, t in [('copy', _('&Copy Link')), ]: ac = getattr(self, '%s_link_action'%a) ac.current_url = url