View Single Post
09-24-13, 12:45 PM   #3
humfras
A Flamescale Wyrmkin
AddOn Author - Click to view addons
Join Date: Oct 2009
Posts: 131
Regarding the blue border texture:

In stuff.lua below line 323 to 325
Lua Code:
  1. if not ret.frame then
  2.     ret.frame = CreateFrame("Button", "StuffingBag" .. bag .. "_" .. slot, self.bags[bag], tpl)
  3. end

insert this:
Lua Code:
  1. --Fix 5.4 NewItemTexture
  2. local ni = _G["StuffingBag" .. bag .. "_" .. slot.."NewItemTexture"]
  3. if ni then
  4.     ni:SetAlpha(0)
  5.     ni:Hide()
  6. end

.
Regarding the "blocked" bug when items are not usable:
If you create a ContainerItemButton out of combat, you can do with it what ever you want.
BUT if you create a new button via CreateFrame dureing combat, it will taint and become non-clickable.
__________________
Author of VuhDo CursorCastBar OptiTaunt Poisoner RaidMobMarker

Last edited by humfras : 09-24-13 at 12:53 PM.
  Reply With Quote