From 8d7565ffc49eb97447d93820ea9dee5210171330 Mon Sep 17 00:00:00 2001 From: Kristian Date: Sat, 20 Jul 2019 16:51:10 +0200 Subject: [PATCH] Disable blinking cursor by default --- 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 412af96..d7a3866 100644 --- a/app/qml/ApplicationSettings.qml +++ b/app/qml/ApplicationSettings.qml @@ -59,7 +59,7 @@ QtObject{ property real burnInQuality: 0.5 property bool useFastBurnIn: Qt.platform.os === "osx" ? false : true - property bool blinkingCursor: true + property bool blinkingCursor: false onWindowScalingChanged: handleFontChanged();