file associations

This commit is contained in:
kepler155c@gmail.com 2018-12-30 09:50:02 -05:00
parent 852bf3f6a6
commit 49849ecfea
1 changed files with 7 additions and 6 deletions

View File

@ -93,9 +93,10 @@ local Browser = UI.Page {
grid = UI.ScrollingGrid { grid = UI.ScrollingGrid {
x = 2, ex = -6, y = 3, ey = -5, x = 2, ex = -6, y = 3, ey = -5,
columns = { columns = {
{ heading = 'Name', key = 'name' }, { heading = 'Extension', key = 'name' },
{ heading = 'Value', key = 'value' }, { heading = 'Program', key = 'value' },
}, },
autospace = true,
sortColumn = 'name', sortColumn = 'name',
accelerators = { accelerators = {
delete = 'remove_entry', delete = 'remove_entry',
@ -111,14 +112,14 @@ local Browser = UI.Page {
manualControls = true, manualControls = true,
[1] = UI.TextEntry { [1] = UI.TextEntry {
width = 20, width = 20,
formLabel = 'Name', formKey = 'name', formLabel = 'Extension', formKey = 'name',
shadowText = 'extension', shadowText = 'extension',
required = true, required = true,
limit = 64, limit = 20,
}, },
[2] = UI.TextEntry { [2] = UI.TextEntry {
width = 20, width = 16,
formLabel = 'Name', formKey = 'value', formLabel = 'Program', formKey = 'value',
shadowText = 'program', shadowText = 'program',
required = true, required = true,
limit = 64, limit = 64,