How can I hide cursor or set it unblinking in QTextEdit?
-
Does anyone know how to hide cursor or disable blinking in QTextEdit?
-
I'm not sure and I don't check. but you can try
@QTextEdit::setCursorWidth ( int width )@
with 0 width value.
-
You right, it's working.
-
For blink rate, you can try
@ qApp->setCursorFlashTime(0); @