100 @param bold flag indicating bold text (boolean) |
100 @param bold flag indicating bold text (boolean) |
101 @return format definiton (QTextCharFormat) |
101 @return format definiton (QTextCharFormat) |
102 """ |
102 """ |
103 font = Preferences.getEditorOtherFonts("MonospacedFont") |
103 font = Preferences.getEditorOtherFonts("MonospacedFont") |
104 charFormat = QTextCharFormat() |
104 charFormat = QTextCharFormat() |
105 charFormat.setFontFamily(font.family()) |
105 charFormat.setFontFamilies([font.family()]) |
106 charFormat.setFontPointSize(font.pointSize()) |
106 charFormat.setFontPointSize(font.pointSize()) |
107 |
107 |
108 if fg: |
108 if fg: |
109 charFormat.setForeground(fg) |
109 charFormat.setForeground(fg) |
110 |
110 |