View Single Post
08-17-12, 04:06 PM   #21
footsoldr2
A Deviate Faerie Dragon
Join Date: Apr 2009
Posts: 16
SUCCESS!

Xrystal - Thank you very much!

I changed the values in the Interface > AddOns > nUI > Integration > nUI_Bazooka.lua file as follows:
local function DetectBazooka_Bars()
-- nUI_ProfileStart( ProfileCounter, "DetectBazooka_Bars" );

if (pre180() == true) then return end

nUI_TopBarsLocator:ClearAllPoints();
if (Bazooka.TopAnchor) then
nUI_TopBarsLocator:SetPoint("BOTTOM", Bazooka.TopAnchor, "BOTTOM", 1295, 0);
else
nUI_TopBarsLocator:SetPoint("BOTTOM", UIParent, "TOP", 1295, 0);
end

nUI_BottomBarsLocator:ClearAllPoints();
if (Bazooka.BottomAnchor) then
nUI_BottomBarsLocator:SetPoint("TOP", Bazooka.BottomAnchor, "TOP", 1295, 0);
else
nUI_BottomBarsLocator:SetPoint("TOP", UIParent, "BOTTOM", 1295, 0);
end

-- nUI_ProfileStop();
Again, thank you very much for your patience and assistance.