mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-08 02:34:06 -04:00
Fix incorrect icon for copy action in viewer context menu
This commit is contained in:
parent
782566aab9
commit
0036f435dd
@ -570,7 +570,7 @@ class DocumentView(QWebView): # {{{
|
|||||||
self.document.animated_scroll_done_signal.connect(self.animated_scroll_done, type=Qt.QueuedConnection)
|
self.document.animated_scroll_done_signal.connect(self.animated_scroll_done, type=Qt.QueuedConnection)
|
||||||
self.document.page_turn.connect(self.page_turn_requested)
|
self.document.page_turn.connect(self.page_turn_requested)
|
||||||
copy_action = self.copy_action
|
copy_action = self.copy_action
|
||||||
copy_action.setIcon(QIcon(I('convert.png')))
|
copy_action.setIcon(QIcon(I('edit-copy.png')))
|
||||||
copy_action.triggered.connect(self.copy, Qt.QueuedConnection)
|
copy_action.triggered.connect(self.copy, Qt.QueuedConnection)
|
||||||
d = self.document
|
d = self.document
|
||||||
self.unimplemented_actions = list(map(self.pageAction,
|
self.unimplemented_actions = list(map(self.pageAction,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user