Sidebar
From WoWWiki
| Used to be part of the Cosmos distribution. |
Last content update was 13 Dec 2004.
Adds toolbar buttons to the sides of the screen.
How To (Self Modifications)
Have Autohide Sidebars appear when the mouse is at the edge of the screen
(Note: Default is mouse appearing when your mouse is in between the edges of the buttons on the bar. This is from Sarf on the Cosmos forums and has NOT been tested.)
- Go into Interface\AddOns\PopNUI\PopNUI.lua
- Look for (approx line 255):
if (left and right and top and bottom and scale) then left = left * scale;
and change this to
if (left and right and top and bottom and scale) then left = 0;
- Look for (approx line 308):
if (left and right and top and bottom and scale) then left = left * scale; right = right * scale;
and change this to
if (left and right and top and bottom and scale) then left = left * scale; right = UIParent:GetWidth() * UIParent:GetScale();
