comparison Modules/Summary.lua @ 136:396c2960d54d

Queueing = queuing. :p
author Zerotorescue
date Tue, 18 Jan 2011 00:39:40 +0100
parents 6724bc8eface
children 15f22a466596
comparison
equal deleted inserted replaced
135:43c6750df18f 136:396c2960d54d
253 iGroup:SetLayout("Flow"); 253 iGroup:SetLayout("Flow");
254 iGroup:MakeButton({ 254 iGroup:MakeButton({
255 name = "Queue", 255 name = "Queue",
256 desc = "Queue all items in this group.", 256 desc = "Queue all items in this group.",
257 exec = function() 257 exec = function()
258 addon:Print(("Queueing all items within %s craftable by the currently open profession."):format(groupName)); 258 addon:Print(("Queuing all items within %s craftable by the currently open profession."):format(groupName));
259 self:SendMessage("IM_QUEUE_GROUP", groupName); 259 self:SendMessage("IM_QUEUE_GROUP", groupName);
260 end, 260 end,
261 }); 261 });
262 262
263 263