diff -r 6fa2418f010c -r 41f716db325e Preferences/ConfigurationPages/HelpAppearancePage.py --- a/Preferences/ConfigurationPages/HelpAppearancePage.py Sun Jan 17 12:57:23 2016 +0100 +++ b/Preferences/ConfigurationPages/HelpAppearancePage.py Sun Jan 17 13:04:48 2016 +0100 @@ -10,6 +10,7 @@ from __future__ import unicode_literals from PyQt5.QtCore import pyqtSlot +from PyQt5.QtWidgets import QFontDialog from E5Gui.E5PathPicker import E5PathPickerModes @@ -124,7 +125,8 @@ Private method used to select the fixed-width font. """ self.fixedFont = \ - self.selectFont(self.fixedFontSample, self.fixedFont, True) + self.selectFont(self.fixedFontSample, self.fixedFont, True, + options=QFontDialog.MonospacedFonts) def create(dlg):