Mercurial > wow > ouroloot
diff gui.lua @ 20:d89aeb6b9f9e
Put in slower but portable loot pattern matching, finally.
author | Farmbuyer of US-Kilrogg <farmbuyer@gmail.com> |
---|---|
date | Thu, 01 Sep 2011 02:03:14 +0000 |
parents | f560cf82e7d3 |
children | 8664134bba4f |
line wrap: on
line diff
--- a/gui.lua Mon Aug 29 01:29:13 2011 +0000 +++ b/gui.lua Thu Sep 01 02:03:14 2011 +0000 @@ -1404,13 +1404,16 @@ w:SetCallback("OnClick", function() collectgarbage() end) grp:AddChild(w) + --[==[ this has been well and truly debugged by now w = mkbutton("EditBox", nil, addon.loot_pattern:sub(17), [[]]) w:SetRelativeWidth(0.35) w:SetLabel("CML pattern suffix") w:SetCallback("OnEnterPressed", function(_w,event,value) addon.loot_pattern = addon.loot_pattern:sub(1,16) .. value end) - grp:AddChild(w) + grp:AddChild(w) ]==] + + w = GUI:Create("Spacer") w:SetFullWidth(true) w:SetHeight(1) grp:AddChild(w) local simple = GUI:Create("SimpleGroup") simple:SetLayout("List")