Maintenance Update and Mythic Dungeon Plus development progress
- Dungeon followers now correctly show into the damage done section. - Fixed an error while statusbar plugin options. - Framework update. - Mythic Dungeon Plus code has been separated into six files (was just 2), this will help with the organization and maintenance of the code.
This commit is contained in:
@@ -397,7 +397,7 @@ function DropDownMetaFunctions:Select(optionName, byOptionNumber, bOnlyShown, ru
|
||||
return false
|
||||
end
|
||||
|
||||
local optionsTable = DF:Dispatch(self.func, self) --399
|
||||
local runOkay, optionsTable = xpcall(self.func, geterrorhandler(), self)
|
||||
|
||||
if (#optionsTable == 0) then
|
||||
self:NoOption(true)
|
||||
@@ -563,6 +563,11 @@ function DropDownMetaFunctions:Selected(thisOption)
|
||||
self.statusbar:SetTexture([[Interface\Tooltips\CHATBUBBLE-BACKGROUND]])
|
||||
end
|
||||
|
||||
if (self.widget.__rcorners) then
|
||||
self.statusbar:SetPoint("topleft", self.widget, "topleft", 2, -2)
|
||||
self.statusbar:SetPoint("bottomright", self.widget, "bottomright", -2, 2)
|
||||
end
|
||||
|
||||
if (thisOption.color) then
|
||||
local r, g, b, a = DF:ParseColors(thisOption.color)
|
||||
self.label:SetTextColor(r, g, b, a)
|
||||
|
||||
Reference in New Issue
Block a user