1
0
mirror of https://github.com/kepler155c/opus synced 2025-10-26 21:27:40 +00:00

optionally show value for slider component - remove some unneeded limits for textEntries

This commit is contained in:
kepler155c@gmail.com
2020-05-06 18:01:10 -06:00
parent 51724ccd78
commit c24411717a
10 changed files with 42 additions and 33 deletions

View File

@@ -177,7 +177,6 @@ local Browser = UI.Page {
formLabel = 'Program', formKey = 'value',
shadowText = 'program',
required = true,
limit = 128,
},
add = UI.Button {
x = -11, y = 1,

View File

@@ -29,7 +29,6 @@ local page = UI.Page {
prompt = UI.TextEntry {
y = 2,
shadowText = 'enter command',
limit = 1024,
accelerators = {
enter = 'command_enter',
up = 'history_back',

View File

@@ -13,7 +13,6 @@ local aliasTab = UI.Tab {
},
path = UI.TextEntry {
y = 3, x = 2, ex = -2,
limit = 256,
shadowText = 'Program path',
accelerators = {
enter = 'new_alias',

View File

@@ -26,7 +26,6 @@ local tab = UI.Tab {
},
custom = UI.TextEntry {
x = 13, ex = -3, y = 4,
limit = 128,
shadowText = 'File name',
},
button = UI.Button {

View File

@@ -11,7 +11,6 @@ local tab = UI.Tab {
},
entry = UI.TextEntry {
x = 3, y = 3, ex = -3,
limit = 256,
shadowText = 'enter new path',
accelerators = {
enter = 'update_path',

View File

@@ -8,7 +8,6 @@ local tab = UI.Tab {
tabClose = true,
entry = UI.TextEntry {
x = 2, y = 2, ex = -2,
limit = 256,
shadowText = 'Enter new require path',
accelerators = {
enter = 'update_path',

View File

@@ -27,7 +27,6 @@ return settings and UI.Tab {
form = UI.Form {
y = 2,
value = UI.TextEntry {
limit = 256,
formIndex = 1,
formLabel = 'Value',
formKey = 'value',