From c478ddaed0a82d9fef4ea73b717a0ed527a5ac87 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Wed, 26 May 2021 12:46:24 -0400 Subject: [PATCH] Disable cursor blink globally --- piker/ui/_exec.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/piker/ui/_exec.py b/piker/ui/_exec.py index 96755fab..85488df8 100644 --- a/piker/ui/_exec.py +++ b/piker/ui/_exec.py @@ -145,6 +145,9 @@ def run_qtractor( # currently seem tricky.. app.setQuitOnLastWindowClosed(False) + # XXX: lmfao, this is how you disable text edit cursor blinking..smh + app.setCursorFlashTime(0) + # set global app singleton global _qt_app _qt_app = app