From fcb5c75180a9b6f326300eddf7d65d4b2f2550c6 Mon Sep 17 00:00:00 2001 From: RedBearAK <64876997+RedBearAK@users.noreply.github.com> Date: Tue, 26 Apr 2022 14:39:53 -0800 Subject: [PATCH] Change SoundBeep tuning. --- windows/kinto.ahk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/windows/kinto.ahk b/windows/kinto.ahk index 5455579..234f6ea 100644 --- a/windows/kinto.ahk +++ b/windows/kinto.ahk @@ -252,13 +252,13 @@ GroupAdd, intellij, ahk_exe idea64.exe ControlGetFocus, fc, A If fc contains Edit,Search,Notify,Windows.UI.Core.CoreWindow1 Send {BackSpace} - Else SoundBeep, + Else SoundBeep, 600, 300 Return $Delete:: ; Delete (without Cmd): Block Delete key with error beep, unless inside text input field ControlGetFocus, fc, A If fc contains Edit,Search,Notify,Windows.UI.Core.CoreWindow1 Send {Delete} - Else SoundBeep, + Else SoundBeep, 600, 300 Return #IfWinActive ; #########################################################################