comparison options.lua @ 147:e1a90e398231

Add unique seconds to history timestamp. Rewrite :format_timestamp to suck less. Include seconds in the formatted history timestamp, because preening fails horribly when the same person has received multiple pieces of loot within the same "minute". Ensure the timestamps are unique if needed; fast looting easily results in multiple loot events per second. Tweak wording of some GUI warnings.
author Farmbuyer of US-Kilrogg <farmbuyer@gmail.com>
date Tue, 30 Dec 2014 20:26:41 -0500
parents 8345df517488
children 113dd7c86222
comparison
equal deleted inserted replaced
146:543fcf15add7 147:e1a90e398231
701 container:AddChild(simple) 701 container:AddChild(simple)
702 end 702 end
703 703
704 w = AceGUI:Create("Spacer") w:SetRelativeWidth(0.65) w:SetHeight(15) container:AddChild(w) 704 w = AceGUI:Create("Spacer") w:SetRelativeWidth(0.65) w:SetHeight(15) container:AddChild(w)
705 w = mkbutton("Clear All & Reload", 705 w = mkbutton("Clear All & Reload",
706 [[No confirmation! |cffff1010Erases absolutely all> Ouro Loot saved variables and reloads the UI.]]) 706 [[No confirmation! |cffff1010Erases absolutely all> Ouro Loot saved variables and immediately reloads the UI.]])
707 w:SetRelativeWidth(0.3) 707 w:SetRelativeWidth(0.3)
708 w:SetCallback("OnClick", function() 708 w:SetCallback("OnClick", function()
709 addon:_clear_SVs() -- reloads 709 addon:_clear_SVs() -- reloads
710 end) 710 end)
711 container:AddChild(w) 711 container:AddChild(w)