Skip to content

Commit

Permalink
Merge branch 'main' into ptr
Browse files Browse the repository at this point in the history
  • Loading branch information
kodewdle committed Nov 17, 2024
2 parents 47eb6d2 + 274ee6c commit 43a91dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ElvUI_Options/Core/DataTexts.lua
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ function DT:SetupPanelOptions(name, data)

local idx = tostring(i)
local hasPoint = i <= (custom and custom.numPoints or db.numPoints or 3)
options.args.dts.args[idx] = hasPoint and ACH:Select('', nil, i, CopyList) or nil
options.args.dts.args[idx] = hasPoint and ACH:Select('', nil, i, CopyList, nil, 'double') or nil

if data and data.battleground ~= nil then
options.args.battleground = ACH:Toggle(L["Battleground Texts"], nil, 1)
Expand All @@ -125,7 +125,7 @@ function DT:SetupPanelOptions(name, data)
options.args.battledts.inline = true
end

options.args.battledts.args[idx] = hasPoint and ACH:Select('', nil, i, CopyList) or nil
options.args.battledts.args[idx] = hasPoint and ACH:Select('', nil, i, CopyList, nil, 'double') or nil
end
end
end
Expand Down

0 comments on commit 43a91dd

Please sign in to comment.