ArtOfShred / LuiExtended

Lui Extended addon for ESO
http://www.esoui.com/downloads/fileinfo.php?id=818
Other
36 stars 21 forks source link

Unit Frames > Raid Spacers #188

Closed luke4mls closed 3 years ago

luke4mls commented 3 years ago

Updating any value in the Unit Frames settings reverts the "Add Spacer for Every 4 Members" setting to "OFF"

luke4mls commented 3 years ago

Solution: LuiExtended/settings/UnitFrames.lua line 1656 missing the word "value"

- setFunc = function(value) Settings.RaidSpacers = UnitFrames.CustomFramesApplyLayoutRaid(true) end,
+ setFunc = function(value) Settings.RaidSpacers = value UnitFrames.CustomFramesApplyLayoutRaid(true) end,
ArtOfShred commented 3 years ago

Fixed on GitHub build, thanks for reporting and providing a solution!