diff --git a/src/effects/desktopgrid/desktopgrid.cpp b/src/effects/desktopgrid/desktopgrid.cpp index 153da09939..1793c47c40 100644 --- a/src/effects/desktopgrid/desktopgrid.cpp +++ b/src/effects/desktopgrid/desktopgrid.cpp @@ -610,7 +610,7 @@ void DesktopGridEffect::windowInputMouseEvent(QEvent* e) } } if (wasWindowMove || wasDesktopMove) { // reset pointer - effects->defineCursor(Qt::PointingHandCursor); + effects->defineCursor(Qt::ArrowCursor); } else { // click -> exit const int desk = posToDesktop(me->pos()); if (desk > effects->numberOfDesktops()) @@ -1036,7 +1036,7 @@ void DesktopGridEffect::setup() return; if (!keyboardGrab) { keyboardGrab = effects->grabKeyboard(this); - effects->startMouseInterception(this, Qt::PointingHandCursor); + effects->startMouseInterception(this, Qt::ArrowCursor); effects->setActiveFullScreenEffect(this); } setHighlightedDesktop(effects->currentDesktop()); diff --git a/src/effects/presentwindows/presentwindows.cpp b/src/effects/presentwindows/presentwindows.cpp index b2a31c9c72..3101398c75 100644 --- a/src/effects/presentwindows/presentwindows.cpp +++ b/src/effects/presentwindows/presentwindows.cpp @@ -1650,7 +1650,7 @@ void PresentWindowsEffect::setActive(bool active) } // Create temporary input window to catch mouse events - effects->startMouseInterception(this, Qt::PointingHandCursor); + effects->startMouseInterception(this, Qt::ArrowCursor); m_hasKeyboardGrab = effects->grabKeyboard(this); effects->setActiveFullScreenEffect(this);