diff --git a/indra/llwindow/llwindowmacosx.cpp b/indra/llwindow/llwindowmacosx.cpp index 40ad023e4d..3e3661e4fb 100644 --- a/indra/llwindow/llwindowmacosx.cpp +++ b/indra/llwindow/llwindowmacosx.cpp @@ -1268,9 +1268,11 @@ bool LLWindowMacOSX::setCursorPosition(const LLCoordWindow position) // trigger mouse move callback LLCoordGL gl_pos; convertCoords(position, &gl_pos); - float scale = getSystemUISize(); - gl_pos.mX *= scale; - gl_pos.mY *= scale; + // gl_pos is not meant to be scaled and breaks our pie menu and possibly other things + //float scale = getSystemUISize(); + //gl_pos.mX *= scale; + //gl_pos.mY *= scale; + // mCallbacks->handleMouseMove(this, gl_pos, (MASK)0); return result;