Thread Tools Display Modes
05-26-10, 03:22 PM   #1
AsheruWolf
Premium Member
 
AsheruWolf's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Jan 2006
Posts: 131
5.06.20 The Death of Info Panels...

Something in 5.06.20 is causing a large number of the info panels to screw up. At first I thought it was just something with InfoPanel: Grid but after reinstalling SKata as well its baddly screwing with the UI.
__________________
The end is never really the end, its the start of something new...
 
05-26-10, 03:45 PM   #2
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
What happens if nUI and Skada are the only two enabled addons?
__________________

What people don't get is that I am, ultimately, an artist at heart.
My brush has two colors, 1 and 0, and my canvas is made of silicon.



Official nUI Web Site: http://www.nUIaddon.com
Official nUI Support Forum: http://forums.nUIaddon.com
My day job: http://www.presidio.com/
 
05-26-10, 03:51 PM   #3
AsheruWolf
Premium Member
 
AsheruWolf's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Jan 2006
Posts: 131
Testing now will update in a moment...
Ok with only nUI, SKata and Grid running I get a bug that will not let me copy or paste >_< But ya its only when useing SKata and Grid Infopanel that it screws up.
__________________
The end is never really the end, its the start of something new...

Last edited by AsheruWolf : 05-26-10 at 03:57 PM.
 
05-26-10, 06:32 PM   #4
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
Odds are the problem is the Grid info panel -- has it been updated since the 5.06.17 release went out? If not, there's your problem.
__________________

What people don't get is that I am, ultimately, an artist at heart.
My brush has two colors, 1 and 0, and my canvas is made of silicon.



Official nUI Web Site: http://www.nUIaddon.com
Official nUI Support Forum: http://forums.nUIaddon.com
My day job: http://www.presidio.com/
 
05-26-10, 08:27 PM   #5
Vis
A Pyroguard Emberseer
 
Vis's Avatar
Join Date: Mar 2009
Posts: 1,827
Someone please correct me if I'm wrong, and test this at your own risk of course

In nUI_InfoPanel_Grid at lines 70-90 is this code block below. If you change both "VARIABLES_LOADED" events to "ADDON_LOADED" It may work again. Just a thought from seeing Xrystal playing with her Mageports addon and vaguely remembering what had changed, lol

Code:
-- master frame for the plugin

local plugin    = CreateFrame( "Frame", nUI_INFOPANEL_GRID, nUI_Dashboard.Anchor );
plugin.active   = true;

local function onGridEvent()
	
	if event == "VARIABLES_LOADED" then
		
		if not IsAddOnLoaded( "Grid" ) then 
			LoadAddOn( "Grid" );
		end
		
		plugin.active = IsAddOnLoaded( "Grid" );

	end	
	
end

plugin:SetScript( "OnEvent", onGridEvent );
plugin:RegisterEvent( "VARIABLES_LOADED" );

Last edited by Vis : 05-26-10 at 08:42 PM. Reason: hehe, I did forget which function changed
 
05-26-10, 09:16 PM   #6
AsheruWolf
Premium Member
 
AsheruWolf's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Jan 2006
Posts: 131
Vis sorry to say that didn't work. Thanks for the suggestion I guess we will have to wait and see if the author updates it.

spiel2001 what ever this is doing causes everything in nUI to stop working but the area in the center. I don't know whats up but just thought I would give you the heads up.
__________________
The end is never really the end, its the start of something new...
 
 

WoWInterface » Featured Projects » nUI, MozzFullWorldMap and PartySpotter » Support » nUI: Bug Reports » 5.06.20 The Death of Info Panels...


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off