QWebview disabled
-
Have you tried disabling mouse tracking? (QWidget::setMouseTracking()).
Or, you can reimplement the QMouseMoveEvent() and tell the cursor not to change, although that might be an overkill, as I might be missing something important here.I do not know if that's intentional. I didn't work with QWebView much, to be honest. And if I remember well, there are going to be some big changes to webView in Qt5.
-
I'm a tad busy today, and no immediate answer comes to my mind, apart from a cruel workaround: try firing mouse move event yourself (in the code), just after you setEnabled(false) and setMouseTracking(false). It may work as a dummy event that would serve as this "first time" primer.
If that doesn't solve it, I won't be able to help you until tomorrow, sorry.