Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions EllesmereUICooldownManager/EUI_CooldownManager_Options.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6063,16 +6063,16 @@ initFrame:SetScript("OnEvent", function(self)
ns.BuildAllCDMBars(); Refresh(); UpdateCDMPreviewAndResize()
end },
{ type="dropdown", text="Grow Direction",
values={ RIGHT="Horizontal", DOWN="Vertical" },
order={ "RIGHT", "DOWN" },
values={ RIGHT="Right", LEFT="Left", DOWN="Down", UP="Up" },
order={ "RIGHT", "LEFT", "DOWN", "UP" },
getValue=function()
local bd = BD()
if bd.growDirection then return bd.growDirection end
return bd.verticalOrientation and "DOWN" or "RIGHT"
end,
setValue=function(v)
BD().growDirection = v
BD().verticalOrientation = (v == "DOWN")
BD().verticalOrientation = (v == "DOWN" or v == "UP")
ns.BuildAllCDMBars(); Refresh(); UpdateCDMPreviewAndResize()
end }); y = y - h

Expand Down