Mercurial > wow > inventory
comparison Summary.lua @ 54:06fee4208bf2
Altoholic should now properly show an on select message when chosen.
Selecting DataStore as item count addons should no longer break.
The local item count displayed in the summary is now actually local rather than global.
author | Zerotorescue |
---|---|
date | Mon, 20 Dec 2010 14:30:31 +0100 |
parents | 9607b3251655 |
children | 03c0610e9c1e |
comparison
equal
deleted
inserted
replaced
53:4fc49c9a8f2b | 54:06fee4208bf2 |
---|---|
560 end | 560 end |
561 end | 561 end |
562 | 562 |
563 if item.localCount == -3 then | 563 if item.localCount == -3 then |
564 -- Only if item count was queued, update it | 564 -- Only if item count was queued, update it |
565 item.localCount = addon:GetItemCount(item.id, groupName); | 565 item.localCount = addon:GetLocalItemCount(item.id, groupName); |
566 if item.set.localCount and item.set.localCount.SetText then | 566 if item.set.localCount and item.set.localCount.SetText then |
567 item.set.localCount:SetText(self:DisplayItemCount(item.localCount, minimumStock)); | 567 item.set.localCount:SetText(self:DisplayItemCount(item.localCount, minimumStock)); |
568 end | 568 end |
569 end | 569 end |
570 | 570 |