I have this personal mod im making (more like modifying the fold mod). And im really confused as to how to have the buttons stacked horizontally in the pause menu. Image attached of what I am requesting. Code snippet: ```function create_UIBox_options()
contents = createOptionsRef()
if G.STATE ~= G.STATES.MENU then
local cashout_button = UIBox_button({
minw = 2,
button = "cashout_button",
label = {
"Cash Out"
},
colour = G.C.RED,
})
local fold_button = UIBox_button({
minw = 3,
button = "fold_button",
label = {
"Fold"
},
colour = HEX('E82C20')
})
table.insert(contents.nodes[1].nodes[1].nodes[1].nodes, #contents.nodes[1].nodes[1].nodes[1].nodes, fold_button) --fold button
table.insert(contents.nodes[1].nodes[1].nodes[1].nodes, #contents.nodes[1].nodes[1].nodes[1].nodes, cashout_button) --cashout button
end
return contents
end```