[Solved] cursor problems in QTextEdit
-
How is this question different from the one you asked "here":http://developer.qt.nokia.com/forums/viewthread/3177/?
-
Just to make the solution obvious to future readers, what you have to do is simply redefine mouseMoveEvent to accept the event, like in the "Drop Site example":http://harmattan-dev.nokia.com/docs/platform-api-reference/xml/daily-docs/libqt4/draganddrop-dropsite-droparea-cpp.html:
@
void DropArea::dragMoveEvent(QDragMoveEvent *event)
{
event->acceptProposedAction();
}@