Are you comfortable editing .lua files?
Go into the Jamba addon directory; open the JambaComms.lua file (use notepad). Search for the phrase "JambaComms:CreateJambaTeamListFrame()" (without the ").
You'll find the code looks like this:
Code:
function JambaComms:CreateJambaTeamListFrame()
-- The frame.
local frame = CreateFrame( "Frame", "JambaTeamListWindowFrame", UIParent )
frame.obj = self
frame:SetWidth( self.db.teamListStatusWidth )
frame:SetHeight( self.teamListTitleHeight + (self.db.teamListStatusHeight * 1) + (self.teamListVerticalSpacing * (1 + 3)) )
frame:SetFrameStrata( "DIALOG" )
frame:SetToplevel( true )
frame:SetClampedToScreen( true )
frame:EnableMouse()
Change the word "DIALOG" to "LOW" (make sure you keep the "). If LOW does not work or the team gui disappears behind other frames, try MEDIUM.
That should solve your problem. Let me know if it works. I've changed this for the next release of Jamba (it annoys me as well)
.
Connect With Us