Thread Tools Display Modes
Prev Previous Post   Next Post Next
10-23-10, 05:25 PM   #1
maltese
A Wyrmkin Dreamwalker
 
maltese's Avatar
AddOn Author - Click to view addons
Join Date: May 2009
Posts: 54
Right-Click Unit Menu in raids bugged?

Just curious if something has changed with wow 4.0.1 to make the rightclick unit menu not work properly in raids using oUF?

I've gone through almost every single layout posted and they all pretty much read:

Code:
	local unit = self.unit:sub(1, -2)
	local cunit = self.unit:gsub("^%l", string.upper)

	if(cunit == "Vehicle") then
		cunit = "Pet"
	end

	if(unit == "party") then
		ToggleDropDownMenu(1, nil, _G["PartyMemberFrame"..self.id.."DropDown"], "cursor", 0, 0)
	elseif(_G[cunit.."FrameDropDown"]) then
		ToggleDropDownMenu(1, nil, _G[cunit.."FrameDropDown"], "cursor", 0, 0)
	elseif unit == "raid" then
		FriendsDropDown.unit = self.unit
		FriendsDropDown.id = self.id
		FriendsDropDown.initialize = RaidFrameDropDown_Initialize
		ToggleDropDownMenu(1,nil,FriendsDropDown,"cursor")	
	end
That code works perfectly fine solo and in parties but the second you join a raid you lose pretty much all functionality of the right click menu. You can't set raid icons or roles from it anymore...etc.

Any ideas on getting the full raid menu to work?
  Reply With Quote
 

WoWInterface » Featured Projects » oUF (Otravi Unit Frames) » Right-Click Unit Menu in raids bugged?


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