Recent changes Random page
GAMING
Gaming
 
StarCraft Wiki
Super Smash Wiki
Halopedia
Diablo Wiki
FFXIclopedia
Grand Theft Wiki
See more...

Sidebar

From WoWWiki

Jump to: navigation, search

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();
Rate this article:
Share this article: