Check spelling in QLineEdit and QPlainTextEdit?
Unsolved
Qt for Python
-
Is there a way to enable the system spell-checking services (such as macOS's "check spelling as you type" functionality) in the various text editing boxes? Many of the text boxes in my application would highly benefit from that.
The closest I've found to this is the QtSpell package for Qt5 but that's C++-only, and, well, Qt5. I'm using PySide6.
-
Hi,
I don't think you can do it as integrated as you would like as neither of these widgets are native controls.
From a quick search, the API of interest is NSSpellChecker.
-