From b9899d94ef0fd61b2899f6fb43d6c98ff8497868 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 25 May 2021 08:06:41 +0530 Subject: [PATCH] Fix #1929463 [[Enhancement] Use the same hyphen in the Preferences windows as in the main titlebar](https://bugs.launchpad.net/calibre/+bug/1929463) --- src/calibre/gui2/preferences/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/preferences/main.py b/src/calibre/gui2/preferences/main.py index fec9771ef2..2a59b64584 100644 --- a/src/calibre/gui2/preferences/main.py +++ b/src/calibre/gui2/preferences/main.py @@ -235,7 +235,7 @@ class Preferences(QDialog): self.move(gui.rect().center() - self.rect().center()) self.setWindowModality(Qt.WindowModality.ApplicationModal) - self.setWindowTitle(__appname__ + ' - ' + _('Preferences')) + self.setWindowTitle(__appname__ + ' — ' + _('Preferences')) self.setWindowIcon(QIcon(I('config.png'))) self.l = l = QVBoxLayout(self)