From 78dc836b9a1520939bba9b1e8eaef4045a7accbc Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 4 Sep 2023 21:48:17 +0530 Subject: [PATCH] Fix #2034055 [[Enhancement] E-book viewer: Alt+f should toggle the "Fit image" checkbox](https://bugs.launchpad.net/calibre/+bug/2034055) --- src/calibre/gui2/image_popup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/image_popup.py b/src/calibre/gui2/image_popup.py index 4c146caeef..ff7914e723 100644 --- a/src/calibre/gui2/image_popup.py +++ b/src/calibre/gui2/image_popup.py @@ -149,7 +149,7 @@ class ImageView(QDialog): self.save_button = so = bb.addButton(_('&Save as'), QDialogButtonBox.ButtonRole.ActionRole) self.copy_button = co = bb.addButton(_('&Copy'), QDialogButtonBox.ButtonRole.ActionRole) self.rotate_button = ro = bb.addButton(_('&Rotate'), QDialogButtonBox.ButtonRole.ActionRole) - self.fullscreen_button = fo = bb.addButton(_('&Full screen'), QDialogButtonBox.ButtonRole.ActionRole) + self.fullscreen_button = fo = bb.addButton(_('F&ull screen'), QDialogButtonBox.ButtonRole.ActionRole) zi.setIcon(QIcon.ic('plus.png')) zo.setIcon(QIcon.ic('minus.png')) so.setIcon(QIcon.ic('save.png'))