--- a/Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py Sat Apr 13 19:06:54 2013 +0200 +++ b/Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py Sun Apr 14 12:25:38 2013 +0200 @@ -43,10 +43,9 @@ self.vcs = vcs self.__hgClient = self.vcs.getClient() - if Utilities.isWindowsPlatform(): - self.contents.setFontFamily("Lucida Console") - else: - self.contents.setFontFamily("Monospace") + font = Preferences.getEditorOtherFonts("MonospacedFont") + self.contents.setFontFamily(font.family()) + self.contents.setFontPointSize(font.pointSize()) self.cNormalFormat = self.contents.currentCharFormat() self.cAddedFormat = self.contents.currentCharFormat()