This commit is contained in:
Kovid Goyal 2022-02-08 11:49:17 +05:30
parent ff71a384db
commit 1f38dd88b4
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -264,12 +264,12 @@ class Quickview(QDialog, Ui_Quickview):
self.close_button.setDefault(False)
self.close_button_tooltip = _('The Quickview shortcut ({0}) shows/hides the Quickview panel')
if self.is_pane:
self.dock_button.setText(_('&Undock'))
self.dock_button.setText(_('Undock'))
self.dock_button.setToolTip(_('Show the Quickview panel in its own floating window'))
self.dock_button.setIcon(QIcon(I('arrow-up.png')))
# Remove the ampersands from the buttons because shortcuts exist.
self.lock_qv.setText(_('Lock Quickview contents'))
self.refresh_button.setText(_('&Refresh'))
self.refresh_button.setText(_('Refresh'))
self.gui.quickview_splitter.add_quickview_dialog(self)
self.close_button.setVisible(False)
else: