Add pixelated fonts and use them as default #197

Merged
Swordfish90 merged 5 commits from add-pixelated-fonts into unstable 2015-01-02 22:15:11 +01:00
Showing only changes of commit 3e7ac0d87d - Show all commits

View File

@ -237,6 +237,8 @@ Item{
visible: false
smooth: !appSettings.lowResolutionFont
function restartBlurSource(){
livetimer.restart();
}
@ -271,8 +273,13 @@ Item{
Loader{
id: blurredTerminalLoader
width: kterminal.width * scaleTexture * appSettings.burnInQuality
height: kterminal.height * scaleTexture * appSettings.burnInQuality
width: appSettings.lowResolutionFont
? kterminal.width
: kterminal.width * scaleTexture * appSettings.burnInQuality
height: appSettings.lowResolutionFont
? kterminal.height
: kterminal.height * scaleTexture * appSettings.burnInQuality
active: mBlur !== 0
asynchronous: true