From 70c2b2d581968a015dac6f3ea1b67c423647ddc5 Mon Sep 17 00:00:00 2001 From: Kubat <mael.martin31@gmail.com> Date: Thu, 29 Jul 2021 21:43:35 +0200 Subject: [PATCH] UI: Disable cursor blinking --- src/VivyApplication.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/VivyApplication.cc b/src/VivyApplication.cc index db735004..1ac4bde6 100644 --- a/src/VivyApplication.cc +++ b/src/VivyApplication.cc @@ -34,6 +34,9 @@ VivyApplication::exec() noexcept QTextStream stylesheetStream(&stylesheet); setStyleSheet(stylesheetStream.readAll()); + // Cursor blinking + setCursorFlashTime(0); + // Show the main window MainWindow mainWindow; mainWindow.show(); -- GitLab