- ShifterBox:AddEntryToLeftList
- ShifterBox:AddEntryToRightList
-- CURRENT
shifterBox:AddEntryToRightList(key, value, replace, categoryId)
-- TARGET
shifterBox:AddEntryToRightList(key, value, tooltip, replace, categoryId)
- ShifterBox:AddEntriesToLeftList
- ShifterBox:AddEntriesToRightList
-- CURRENT
shifterBox:AddEntriesToRightList(entries, replace, categoryId)
entries = {
[key] = value,
[key] = value
}
-- TARGET
shifterBox:AddEntriesToRightList(entries, replace, categoryId)
entries = {
[key] = {
[value] = value,
[tooltip] = tooltip
},
[key] = {
[value] = value,
[tooltip] = tooltip
}
}
Constraints: Will replace the current tooltip that is displayed if the full value cannot be displayed (listBox not wide enough)
Constraints: Will replace the current tooltip that is displayed if the full value cannot be displayed (listBox not wide enough)