Make the upscaled fonts really upscaled. (Faster expecially at high resolutions).

This commit is contained in:
Filippo Scognamiglio
2014-12-31 13:46:03 +01:00
parent a63135045e
commit a6952251de
5 changed files with 126 additions and 54 deletions

View File

@@ -83,7 +83,7 @@ Item{
colorScheme: "cool-retro-term"
smooth: appSettings.rasterization === appSettings.no_rasterization
smooth: !appSettings.lowResolutionFont
enableBold: false
fullCursorHeight: true
@@ -115,7 +115,7 @@ Item{
function handleFontChange(fontSource, pixelSize, lineSpacing, screenScaling, fontWidth){
fontLoader.source = fontSource;
kterminal.antialiasText = appSettings.rasterization === appSettings.no_rasterization
kterminal.antialiasText = !appSettings.lowResolutionFont;
font.pixelSize = pixelSize;
font.family = fontLoader.name;