How to change cursor shape at column boundaries of QTableView Qt 5.13.0
-
Ok, now I see what you're doing wrong - you're setting a global override cursor so no widget will be able to change the cursor. You're looking for QGuiApplication::restoreOverrideCursor() as described in the documentation
-
I would say this is clear enough:
"Application override cursors are intended for showing the user that the application is in a special state, for example during an operation that might take some time.
This cursor will be displayed in all the application's widgets until restoreOverrideCursor() or another setOverrideCursor() is called."
/Edit: please makr the thread as solved, thx :)