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