Disable cursor blink globally

symbol_search
Tyler Goodlet 2021-05-26 12:46:24 -04:00
parent 924960a359
commit c478ddaed0
1 changed files with 3 additions and 0 deletions

View File

@ -145,6 +145,9 @@ def run_qtractor(
# currently seem tricky.. # currently seem tricky..
app.setQuitOnLastWindowClosed(False) app.setQuitOnLastWindowClosed(False)
# XXX: lmfao, this is how you disable text edit cursor blinking..smh
app.setCursorFlashTime(0)
# set global app singleton # set global app singleton
global _qt_app global _qt_app
_qt_app = app _qt_app = app