View Single Post
08-12-12, 04:21 PM   #7
footsoldr2
A Deviate Faerie Dragon
Join Date: Apr 2009
Posts: 16
Thank you for the response.

In the version of the file I have these lines (located near the top of the file) and I changed the value from 0 to 1400 and it did not change anything.
nUI_BottomBarsLocator:SetPoint( "BOTTOM", nUI_MasterFrame, "BOTTOM", 0, 1400 );
nUI_TopBarsLocator:SetPoint( "BOTTOM", nUI_MasterFrame, "TOP", 0, 1400 );

However in his example he shows the following. Should I add these lines to the code since they state "BOTTOMLEFT" and "TOPLEFT"?
nUI_BottomBarsLocator:SetPoint( "BOTTOMLEFT", nUI_MasterFrame, "BOTTOMLEFT", 0, 0 );
nUI_TopBarsLocator:SetPoint( "BOTTOMLEFT", nUI_MasterFrame, "TOPLEFT", 0, 0 );
I also tried with changes to the very end of the file, again with no change. However that is listed after the final "end" statement.
nUI_MasterFrame:SetHeight( 1024 );
nUI_MasterFrame:SetWidth( 1280 );
nUI_MasterFrame:ClearAllPoints();
nUI_MasterFrame:SetPoint( "BOTTOM", UIParent, "BOTTOM", 0, 1400 );
nUI_MasterFrame:SetPoint( "TOP", UIParent, "TOP", 0, 1400 );
Thank you.