1
0
mirror of https://github.com/Swordfish90/cool-retro-term.git synced 2025-09-25 06:32:43 +01:00

REmoved bold fonts (caused problems rasterization), using custom greyscale color scheme (applications that use colors are now useable).

This commit is contained in:
Filippo Scognamiglio
2014-07-01 01:49:36 +02:00
parent 9eee62b3a4
commit f1dc94fab2
5 changed files with 121 additions and 47 deletions

View File

@@ -129,7 +129,7 @@ KTerminalDisplay::KTerminalDisplay(QQuickItem *parent) :
,_fontHeight(1)
,_fontWidth(1)
,_fontAscent(1)
,_boldIntense(true)
,_boldIntense(false)
,_lines(1)
,_columns(1)
,_usedLines(1)
@@ -1971,7 +1971,7 @@ void KTerminalDisplay::drawCharacters(QPainter* painter,
if ( font.bold() != useBold
|| font.underline() != useUnderline )
{
font.setBold(useBold);
//font.setBold(useBold);
font.setUnderline(useUnderline);
}