From 4a88bbf5a1486952c62bbc88c5ec9a6b34e93cb5 Mon Sep 17 00:00:00 2001 From: Gore Liu Date: Thu, 28 Apr 2016 16:15:29 +0800 Subject: [PATCH] ProcessInputCommand call ProcessInputCommandCallBack by SetTimer --- RunZ.ahk | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/RunZ.ahk b/RunZ.ahk index d53dc32..e928aee 100644 --- a/RunZ.ahk +++ b/RunZ.ahk @@ -724,6 +724,14 @@ return ProcessInputCommand: ControlGetText, g_CurrentInput, %g_InputArea% + ; 为了避免搜索时间过长导致不再调用 ProcessInputCommand + ; 不清楚这样做是否有其他问题 + SetTimer, ProcessInputCommandCallBack, 0 +return + +ProcessInputCommandCallBack: + SetTimer, ProcessInputCommandCallBack, Off + if (g_SkinConf.ShowInputBoxOnlyIfEmpty) { if (g_CurrentInput != "")