11-- @Author: Webster
22-- @Date: 2015-01-21 15:21:19
33-- @Last Modified by: Webster
4- -- @Last Modified time: 2016-01-13 08:47:31
4+ -- @Last Modified time: 2016-01-14 00:29:42
55
66-- these global functions are accessed all the time by the event handler
77-- so caching them is worth the effort
@@ -19,7 +19,7 @@ local ROOT_PATH = "interface/JH/0Base/"
1919local DATA_PATH = " interface/JH/@DATA/"
2020local SHADOW_PATH = " interface/JH/0Base/item/shadow.ini"
2121local ADDON_PATH = " interface/JH/"
22- local _VERSION_ = 0x1020300
22+ local _VERSION_ = 0x1020400
2323
2424---- -----------------------------------------------------------------
2525-- 多语言处理
7373end
7474
7575local _JH = {
76- szBuildDate = " 20160107 " ,
76+ szBuildDate = " 20160114 " ,
7777 szTitle = _L [" JH, JX3 Plug-in Collection" ],
7878 tHotkey = {},
7979 tAnchor = {},
@@ -2558,7 +2558,6 @@ function _GUI.Wnd:Autocomplete(fnTable, fnCallBack, fnRecovery, nMaxOption)
25582558 for k , v in ipairs (tTab ) do
25592559 local txt = type (v ) ~= " table" and tostring (v ) or v .bRichText and v .option or v .szOption
25602560 if txt and txt :find (szText ) and (txt ~= szText or type (v ) == " table" and v .self ) then
2561-
25622561 table.insert (tList , v )
25632562 elseif type (v ) == " table" and v .bDevide then
25642563 table.insert (tList , v )
@@ -2594,10 +2593,11 @@ function _GUI.Wnd:Autocomplete(fnTable, fnCallBack, fnRecovery, nMaxOption)
25942593 end
25952594 end
25962595 if fnRecovery then
2597- t .szLayer = " ICON_RIGHT"
2598- t .nFrame = 86
2599- t .szIcon = " ui/Image/UICommon/Feedanimials.uitex"
2600- t .fnClickIcon = function ()
2596+ t .szLayer = " ICON_RIGHTMOST"
2597+ t .nFrame = 86
2598+ t .nMouseOverFrame = 87
2599+ t .szIcon = " ui/Image/UICommon/Feedanimials.uitex"
2600+ t .fnClickIcon = function ()
26012601 JH .Confirm (FormatString (g_tStrings .MSG_DELETE_NAME , t .szOption ), function ()
26022602 local _this = this
26032603 this = wnd
0 commit comments