View Single Post
09-03-12, 05:46 AM   #407
Meorawr
A Chromatic Dragonspawn
AddOn Author - Click to view addons
Join Date: Nov 2010
Posts: 193
Originally Posted by galvin View Post
Meorawr can you tell me what line of code I need to fix the invert bug for stacks display please. I have this stacks display that's on all the time in the middle of my screen. It also prevents that stack display from working when it needs to.

Thanks
Ah right, knew I forgot something - sorry.

PowerAuras\Modules\Metadata.lua, somewhere near the top find:

Lua Code:
  1. --- Flags for inverted linked displays.
  2. Metadata.DISPLAY_INVMASK    = 0x00000010;
  3. Metadata.DISPLAY_INV_INVERT = 0x00000010;

Replace with:

Lua Code:
  1. --- Flags for inverted linked displays.
  2. Metadata.DISPLAY_INVMASK    = 0x00000100;
  3. Metadata.DISPLAY_INV_INVERT = 0x00000100;

However, that specific way of fixing it will reset the invert state of all your child displays.