WoWInterface SVN CompactBars

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 24 to Rev 25
    Reverse comparison

Rev 24 → Rev 25

trunk/CompactBars/config.lua
432,6 → 432,27
},
},
},
markers = {
type = "group",
name = L["Markers"],
desc = L["Used to create lines at special destinations"],
args = {
times = {
name = L["Points of time"],
type = "input",
multiline = true,
get = function() return CompactBars.db.profile.markers end,
set = function(self, inp)
CompactBars.sb:ResetMarkers()
CompactBars.db.profile.markers = inp
for k, v in pairs({strsplit(",", inp)}) do
CompactBars.sb:CreateMarker(tonumber(strtrim(v)))
end
 
end,
},
},
},
position = {
type = "group",
name = L["Position"],