From 28bb2e2adf01a28769a0b1996560ea5468d97713 Mon Sep 17 00:00:00 2001 From: Filippo Scognamiglio Date: Tue, 11 Nov 2014 15:19:03 +0100 Subject: [PATCH] Set default effects fps to 24 (the terminal is now updated at full speed). --- app/qml/ApplicationSettings.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/qml/ApplicationSettings.qml b/app/qml/ApplicationSettings.qml index 0555478..7a21e1d 100644 --- a/app/qml/ApplicationSettings.qml +++ b/app/qml/ApplicationSettings.qml @@ -40,7 +40,7 @@ Item{ property real window_scaling: 1.0 onWindow_scalingChanged: handleFontChanged(); - property real fps: 0 + property real fps: 24 function mix(c1, c2, alpha){ return Qt.rgba(c1.r * alpha + c2.r * (1-alpha),