Mercurial > wow > inventory
diff Modules/Scanner.lua @ 144:12a8ea5af671
Added a ?remove? button to the crafting queue.
When removing an item from the queue or when it is finished casting (when using the Inventorium queue processer), items are moved to the ?unqueuables? window.
Fixed auction price checking.
Now resetting filters before scanning the tradeskill recipes.
author | Zerotorescue |
---|---|
date | Wed, 19 Jan 2011 23:21:16 +0100 |
parents | 56f33abee1e3 |
children | 07263a435f3c |
line wrap: on
line diff
--- a/Modules/Scanner.lua Tue Jan 18 23:48:16 2011 +0100 +++ b/Modules/Scanner.lua Wed Jan 19 23:21:16 2011 +0100 @@ -67,8 +67,8 @@ end end, ["sort"] = "asc", -- when the data is set, use this column so sort the default data - ["tooltipTitle"] = (not addon.db.profile.defaults.hideHelp and "Item"), - ["tooltip"] = (not addon.db.profile.defaults.hideHelp and "Click to sort the list by item quality then item name."), + ["tooltipTitle"] = "Item", + ["tooltip"] = "Click to sort the list by item quality then item name.", }, { ["name"] = "Moving", @@ -76,8 +76,8 @@ ["align"] = "RIGHT", ["defaultsort"] = "dsc", ["sortnext"] = 1, - ["tooltipTitle"] = (not addon.db.profile.defaults.hideHelp and "Moving"), - ["tooltip"] = (not addon.db.profile.defaults.hideHelp and "Click to sort the list by the amount of movable items."), + ["tooltipTitle"] = "Moving", + ["tooltip"] = "Click to sort the list by the amount of movable items.", }, { ["name"] = "Available", @@ -95,21 +95,21 @@ return aAvailablePercent < bAvailablePercent; end end, - ["tooltipTitle"] = (not addon.db.profile.defaults.hideHelp and "Item"), - ["tooltip"] = (not addon.db.profile.defaults.hideHelp and "Click to sort the list by the availibility percentage."), + ["tooltipTitle"] = "Item", + ["tooltip"] = "Click to sort the list by the availibility percentage.", }, }; local proceedButton = { text = "Move Items", - tooltipTitle = (not addon.db.profile.defaults.hideHelp and "Move Items"), - tooltip = (not addon.db.profile.defaults.hideHelp and "Start moving these items from the bank."), + tooltipTitle = "Move Items", + tooltip = "Start moving these items from the bank.", onClick = OnMoveAccept, }; local cancelButton = { text = "Cancel", - tooltipTitle = (not addon.db.profile.defaults.hideHelp and "Cancel"), - tooltip = (not addon.db.profile.defaults.hideHelp and "Do not move anything and close the window."), + tooltipTitle = "Cancel", + tooltip = "Do not move anything and close the window.", onClick = OnMoveCancel, }; @@ -145,8 +145,8 @@ end end, ["sort"] = "asc", -- when the data is set, use this column so sort the default data - ["tooltipTitle"] = (not addon.db.profile.defaults.hideHelp and "Item"), - ["tooltip"] = (not addon.db.profile.defaults.hideHelp and "Click to sort the list by item quality then item name."), + ["tooltipTitle"] = "Item", + ["tooltip"] = "Click to sort the list by item quality then item name.", }, { ["name"] = "Buying", @@ -154,8 +154,8 @@ ["align"] = "RIGHT", ["defaultsort"] = "dsc", ["sortnext"] = 1, - ["tooltipTitle"] = (not addon.db.profile.defaults.hideHelp and "Buying"), - ["tooltip"] = (not addon.db.profile.defaults.hideHelp and "Click to sort the list by the amount of purchasable items."), + ["tooltipTitle"] = "Buying", + ["tooltip"] = "Click to sort the list by the amount of purchasable items.", }, { ["name"] = "Cost", @@ -163,21 +163,21 @@ ["align"] = "RIGHT", ["defaultsort"] = "dsc", ["sortnext"] = 1, - ["tooltipTitle"] = (not addon.db.profile.defaults.hideHelp and "Cost"), - ["tooltip"] = (not addon.db.profile.defaults.hideHelp and "Click to sort the list by the total cost of buying all these items."), + ["tooltipTitle"] = "Cost", + ["tooltip"] = "Click to sort the list by the total cost of buying all these items.", }, }; local proceedButton = { text = "Purchase Items", - tooltipTitle = (not addon.db.profile.defaults.hideHelp and "Purchase Items"), - tooltip = (not addon.db.profile.defaults.hideHelp and "Start purchasing these items from this merchant."), + tooltipTitle = "Purchase Items", + tooltip = "Start purchasing these items from this merchant.", onClick = OnMoveAccept, }; local cancelButton = { text = "Cancel", - tooltipTitle = (not addon.db.profile.defaults.hideHelp and "Cancel"), - tooltip = (not addon.db.profile.defaults.hideHelp and "Do not purchase anything and close the window."), + tooltipTitle = "Cancel", + tooltip = "Do not purchase anything and close the window.", onClick = OnMoveCancel, };