TTMSFMXMemo plays error sound on MAC OSX

When using the memo on MAC OSX, whenever I use arrow keys, backspace, del and some other, it plays an error sound, like there's no text in the memo, but moves the cursor just fine. The normal TMemo does not do that. How can I fix this quickly without waiting for an update? My customer keep on complaining about the weird sound.

Hi, 


We have applied a fix for this issue, the next version will address this.
The fix sets Key := 0 in the KeyDown implementation of TTMSFMXMemo:

  if not ReadOnly then
    CheckCodeInsightChar(KeyChar);

  case Key of
    vkLeft, vkUp, vkRight, vkDown, vkReturn, vkBack: Key := 0;
  end;
end;