diff --git a/platform.cpp b/platform.cpp --- a/platform.cpp +++ b/platform.cpp @@ -41,6 +41,7 @@ : QObject(parent) , m_eglDisplay(EGL_NO_DISPLAY) { + setSoftWareCursor(false); m_colorCorrect = new ColorCorrect::Manager(this); } @@ -129,6 +130,9 @@ void Platform::setSoftWareCursor(bool set) { + if (qEnvironmentVariableIsSet("KWIN_FORCE_SW_CURSOR")) { + set = true; + } if (m_softWareCursor == set) { return; }