Does anyone know how to control the autoRepeat'ом key on Qt ? How to disable autoRepeat or how to change the delay of its start?

    1 answer 1

    Try using QApplication :: keyboardInputInterval ( http://qt-project.org/doc/qt-4.8/qapplication.html#keyboardInputInterval-prop ), as well as the QShortcut :: autoRepeat property.

    • Thank. Reached the desired result with autoRepeat - nicolai
    • You're welcome! Do not forget to mark the answer accepted) Successes! - progzdeveloper