Fix #1929463 [[Enhancement] Use the same hyphen in the Preferences windows as in the main titlebar](https://bugs.launchpad.net/calibre/+bug/1929463)

This commit is contained in:
Kovid Goyal 2021-05-25 08:06:41 +05:30
parent aebe0f1f86
commit b9899d94ef
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -235,7 +235,7 @@ class Preferences(QDialog):
self.move(gui.rect().center() - self.rect().center()) self.move(gui.rect().center() - self.rect().center())
self.setWindowModality(Qt.WindowModality.ApplicationModal) self.setWindowModality(Qt.WindowModality.ApplicationModal)
self.setWindowTitle(__appname__ + ' - ' + _('Preferences')) self.setWindowTitle(__appname__ + ' ' + _('Preferences'))
self.setWindowIcon(QIcon(I('config.png'))) self.setWindowIcon(QIcon(I('config.png')))
self.l = l = QVBoxLayout(self) self.l = l = QVBoxLayout(self)