Removed scanline quality settings. Was quite useless and confusing.

This commit is contained in:
Filippo Scognamiglio
2014-12-14 19:13:19 +01:00
parent 29e8592582
commit 4ce7b0cadf
3 changed files with 1 additions and 47 deletions

View File

@@ -115,7 +115,7 @@ Item{
width = Qt.binding(function() {return Math.floor(terminalContainer.width / (screenScaling * fontWidth));});
height = Qt.binding(function() {return Math.floor(terminalContainer.height / screenScaling);});
scaleTexture = Math.max(Math.round(screenScaling / appSettings.scanline_quality), 1.0);
scaleTexture = Math.max(1.0, Math.round(screenScaling / 2));
kterminal.lineSpacing = lineSpacing;
}