瀏覽代碼

avoid error sound on backspace on MacOS

Juliette ELSASS 1 年之前
父節點
當前提交
d59d04e9f6
共有 1 個文件被更改,包括 8 次插入0 次删除
  1. 8 0
      lazpaintcontrols/lcvectortextshapes.pas

+ 8 - 0
lazpaintcontrols/lcvectortextshapes.pas

@@ -2229,6 +2229,14 @@ var
   idxPara, newPos: Integer;
   tl: TBidiTextLayout;
 begin
+  {$IFDEF DARWIN}
+  if (Shift*[ssCtrl, ssAlt] = []) and (Key = skBackspace) then
+  begin
+    KeyPress(#8, AHandled);
+    exit;
+  end;
+  {$ENDIF}
+
   if (FTextLayout = nil) or (Usermode <> vsuEditText) then exit;
 
   if Key = skDelete then