milo shop tweaks
This commit is contained in:
@@ -95,19 +95,19 @@ local function createPage(node)
|
|||||||
y = -1,
|
y = -1,
|
||||||
backgroundColor = colors.gray,
|
backgroundColor = colors.gray,
|
||||||
prevButton = UI.Button {
|
prevButton = UI.Button {
|
||||||
x = 2, width = 5,
|
x = 1, width = 5,
|
||||||
event = 'previous',
|
event = 'previous',
|
||||||
backgroundColor = colors.lightGray,
|
backgroundColor = colors.lightGray,
|
||||||
text = ' < '
|
text = ' < '
|
||||||
},
|
},
|
||||||
resetButton = UI.Button {
|
resetButton = UI.Button {
|
||||||
x = 8, ex = -8,
|
x = 6, ex = -6,
|
||||||
event = 'reset',
|
event = 'reset',
|
||||||
backgroundColor = colors.lightGray,
|
backgroundColor = colors.lightGray,
|
||||||
text = 'Reset'
|
text = 'Reset'
|
||||||
},
|
},
|
||||||
nextButton = UI.Button {
|
nextButton = UI.Button {
|
||||||
x = -6, width = 5,
|
x = -5, width = 5,
|
||||||
event = 'next',
|
event = 'next',
|
||||||
backgroundColor = colors.lightGray,
|
backgroundColor = colors.lightGray,
|
||||||
text = ' > '
|
text = ' > '
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ local storeTab = UI.Window {
|
|||||||
formLabel = 'Name', formKey = 'name',
|
formLabel = 'Name', formKey = 'name',
|
||||||
help = 'Unique name used when paying for an item',
|
help = 'Unique name used when paying for an item',
|
||||||
required = true,
|
required = true,
|
||||||
width = 16,
|
width = 12,
|
||||||
limit = 64,
|
limit = 64,
|
||||||
},
|
},
|
||||||
[2] = UI.TextEntry {
|
[2] = UI.TextEntry {
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ local function createPage(node)
|
|||||||
{ heading = 'Stock', key = 'count', width = 6, justify = 'right' },
|
{ heading = 'Stock', key = 'count', width = 6, justify = 'right' },
|
||||||
{ heading = ' Price', key = 'price', width = 9, justify = 'right' },
|
{ heading = ' Price', key = 'price', width = 9, justify = 'right' },
|
||||||
{ heading = 'Name', key = 'displayName' },
|
{ heading = 'Name', key = 'displayName' },
|
||||||
{ heading = 'Address', key = 'address', width = 16 },
|
{ heading = 'Address', key = 'address', width = 12 },
|
||||||
},
|
},
|
||||||
sortColumn = 'displayName',
|
sortColumn = 'displayName',
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user