From 879bccf8f0786d716e4ecc6238a2075be9e5ac4a Mon Sep 17 00:00:00 2001 From: TheBestPessimist Date: Mon, 13 Jan 2020 09:15:12 +0200 Subject: [PATCH] Increase #MaxHotkeysPerInterval to 200 from 50 Followup of 1008268825b66019dc6832ddc2d2c3083490663e. Some hotstring reset code is hit quite a lot sometimes, so I'm increasing this value. Example of such code: `~Right::Hotstring("Reset")` --- AutoHotkeyU64.ahk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AutoHotkeyU64.ahk b/AutoHotkeyU64.ahk index 4e0af95..3638f12 100644 --- a/AutoHotkeyU64.ahk +++ b/AutoHotkeyU64.ahk @@ -1,9 +1,9 @@ -#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. +#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. #SingleInstance force -#MaxHotkeysPerInterval 50 +#MaxHotkeysPerInterval 200 #WinActivateForce #InstallKeybdHook #InstallMouseHook