https://bugs.kde.org/show_bug.cgi?id=384805
--- Comment #5 from Martin Flöser <mgraess...@kde.org> --- Cursor::setPos is finally implemented in the X11Cursor::doSetPos (file plugins/platforms/x11/standalone/x11cursor.cpp line60) void X11Cursor::doSetPos() { const QPoint &pos = currentPos(); xcb_warp_pointer(connection(), XCB_WINDOW_NONE, rootWindow(), 0, 0, 0, 0, pos.x(), pos.y()); // call default implementation to emit signal Cursor::doSetPos(); } As written in the last comment my guess is that xcb_warp_pointer just creates an incorrect warp in your case. -- You are receiving this mail because: You are watching all bug changes.