diff --git a/indra/llwindow/llopenglview-objc.mm b/indra/llwindow/llopenglview-objc.mm index b3a9a666ae..a7da64a712 100644 --- a/indra/llwindow/llopenglview-objc.mm +++ b/indra/llwindow/llopenglview-objc.mm @@ -443,10 +443,12 @@ attributedStringInfo getSegments(NSAttributedString *str) // OS X intentionally does not send us key-up information on cmd-key combinations. // This behaviour is not a bug, and only applies to cmd-combinations (no others). // Since SL assumes we receive those, we fake it here. - if (mModifiers & NSCommandKeyMask && !mHasMarkedText) - { - callKeyUp([theEvent keyCode], mModifiers); - } + // Cinder Roxley's fix for FIRE-11648 + //if (mModifiers & NSCommandKeyMask && !mHasMarkedText) + //{ + // callKeyUp([theEvent keyCode], mModifiers); + //} + // } - (void)flagsChanged:(NSEvent *)theEvent