This commit is contained in:
Kovid Goyal 2019-11-06 13:58:00 +05:30
parent 2da1f63821
commit 953a1d7573
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -305,7 +305,7 @@ class MainOverlay: # {{{
copy_actions.appendChild(ac(_('View image'), _('View the current image'), def(): copy_actions.appendChild(ac(_('View image'), _('View the current image'), def():
self.overlay.hide(), ui_operations.view_image(self.elements.img) self.overlay.hide(), ui_operations.view_image(self.elements.img)
, 'image')) , 'image'))
copy_actions.appendChild(ac(_('Copy image'), _('View the current image'), def(): copy_actions.appendChild(ac(_('Copy image'), _('Copy the current image'), def():
self.overlay.hide(), ui_operations.copy_image(self.elements.img) self.overlay.hide(), ui_operations.copy_image(self.elements.img)
, 'copy')) , 'copy'))
if copy_actions.childNodes.length: if copy_actions.childNodes.length: