In a CMS I am making, I want the items in my menus to display in a single column, rather than two. I've already set @column_max to "1" but there seems to be something else needing a change in def draw_item... Take a look here.
Anyone know what I need to set in that line for the y position? Much thanks!
Code:
#--------------------------------------------------------------------------
# * Draw Item
# index : item number
#--------------------------------------------------------------------------
def draw_item(index)
item = @data[index]
x = 4 + index % 2 * (288 + 32)
# The line below needs editing to list items in a single column.
y = index / 2 * 32
Anyone know what I need to set in that line for the y position? Much thanks!